Message ID | c600cc3615eeea7c876a7c0edd058b880519e175.1655213915.git.asml.silence@gmail.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | 5.20 cleanups and poll optimisations | expand |
On 6/14/22 22:36, Pavel Begunkov wrote: > Shove all slow path data at the end of ctx and get rid of extra > indention. > > Signed-off-by: Pavel Begunkov <asml.silence@gmail.com> > --- > io_uring/io_uring_types.h | 81 +++++++++++++++++++-------------------- > 1 file changed, 39 insertions(+), 42 deletions(-) > > diff --git a/io_uring/io_uring_types.h b/io_uring/io_uring_types.h > index 4f52dcbbda56..ca8e25992ece 100644 > --- a/io_uring/io_uring_types.h > +++ b/io_uring/io_uring_types.h > @@ -183,7 +183,6 @@ struct io_ring_ctx { > struct list_head apoll_cache; > struct xarray personalities; > u32 pers_next; > - unsigned sq_thread_idle; SQPOLL is seen as a slow path?
On 6/15/22 08:58, Hao Xu wrote: > On 6/14/22 22:36, Pavel Begunkov wrote: >> Shove all slow path data at the end of ctx and get rid of extra >> indention. >> >> Signed-off-by: Pavel Begunkov <asml.silence@gmail.com> >> --- >> io_uring/io_uring_types.h | 81 +++++++++++++++++++-------------------- >> 1 file changed, 39 insertions(+), 42 deletions(-) >> >> diff --git a/io_uring/io_uring_types.h b/io_uring/io_uring_types.h >> index 4f52dcbbda56..ca8e25992ece 100644 >> --- a/io_uring/io_uring_types.h >> +++ b/io_uring/io_uring_types.h >> @@ -183,7 +183,6 @@ struct io_ring_ctx { >> struct list_head apoll_cache; >> struct xarray personalities; >> u32 pers_next; >> - unsigned sq_thread_idle; > > SQPOLL is seen as a slow path? SQPOLL is not a slow path, but struct io_ring_ctx::sq_thread_idle definitely is. Perhaps, you mixed it up with struct io_sq_data::sq_thread_idle
On 6/15/22 18:11, Pavel Begunkov wrote: > On 6/15/22 08:58, Hao Xu wrote: >> On 6/14/22 22:36, Pavel Begunkov wrote: >>> Shove all slow path data at the end of ctx and get rid of extra >>> indention. >>> >>> Signed-off-by: Pavel Begunkov <asml.silence@gmail.com> >>> --- >>> io_uring/io_uring_types.h | 81 +++++++++++++++++++-------------------- >>> 1 file changed, 39 insertions(+), 42 deletions(-) >>> >>> diff --git a/io_uring/io_uring_types.h b/io_uring/io_uring_types.h >>> index 4f52dcbbda56..ca8e25992ece 100644 >>> --- a/io_uring/io_uring_types.h >>> +++ b/io_uring/io_uring_types.h >>> @@ -183,7 +183,6 @@ struct io_ring_ctx { >>> struct list_head apoll_cache; >>> struct xarray personalities; >>> u32 pers_next; >>> - unsigned sq_thread_idle; >> >> SQPOLL is seen as a slow path? > > SQPOLL is not a slow path, but struct io_ring_ctx::sq_thread_idle > definitely is. Perhaps, you mixed it up with > struct io_sq_data::sq_thread_idle > Indeed, thanks.
diff --git a/io_uring/io_uring_types.h b/io_uring/io_uring_types.h index 4f52dcbbda56..ca8e25992ece 100644 --- a/io_uring/io_uring_types.h +++ b/io_uring/io_uring_types.h @@ -183,7 +183,6 @@ struct io_ring_ctx { struct list_head apoll_cache; struct xarray personalities; u32 pers_next; - unsigned sq_thread_idle; } ____cacheline_aligned_in_smp; /* IRQ completion list, under ->completion_lock */ @@ -230,23 +229,6 @@ struct io_ring_ctx { struct list_head io_buffers_comp; } ____cacheline_aligned_in_smp; - struct io_restriction restrictions; - - /* slow path rsrc auxilary data, used by update/register */ - struct { - struct io_rsrc_node *rsrc_backup_node; - struct io_mapped_ubuf *dummy_ubuf; - struct io_rsrc_data *file_data; - struct io_rsrc_data *buf_data; - - struct delayed_work rsrc_put_work; - struct llist_head rsrc_put_llist; - struct list_head rsrc_ref_list; - spinlock_t rsrc_ref_lock; - - struct list_head io_buffers_pages; - }; - /* timeouts */ struct { spinlock_t timeout_lock; @@ -257,30 +239,45 @@ struct io_ring_ctx { } ____cacheline_aligned_in_smp; /* Keep this last, we don't need it for the fast path */ - struct { - #if defined(CONFIG_UNIX) - struct socket *ring_sock; - #endif - /* hashed buffered write serialization */ - struct io_wq_hash *hash_map; - - /* Only used for accounting purposes */ - struct user_struct *user; - struct mm_struct *mm_account; - - /* ctx exit and cancelation */ - struct llist_head fallback_llist; - struct delayed_work fallback_work; - struct work_struct exit_work; - struct list_head tctx_list; - struct completion ref_comp; - - /* io-wq management, e.g. thread count */ - u32 iowq_limits[2]; - bool iowq_limits_set; - - struct list_head defer_list; - }; + + struct io_restriction restrictions; + + /* slow path rsrc auxilary data, used by update/register */ + struct io_rsrc_node *rsrc_backup_node; + struct io_mapped_ubuf *dummy_ubuf; + struct io_rsrc_data *file_data; + struct io_rsrc_data *buf_data; + + struct delayed_work rsrc_put_work; + struct llist_head rsrc_put_llist; + struct list_head rsrc_ref_list; + spinlock_t rsrc_ref_lock; + + struct list_head io_buffers_pages; + + #if defined(CONFIG_UNIX) + struct socket *ring_sock; + #endif + /* hashed buffered write serialization */ + struct io_wq_hash *hash_map; + + /* Only used for accounting purposes */ + struct user_struct *user; + struct mm_struct *mm_account; + + /* ctx exit and cancelation */ + struct llist_head fallback_llist; + struct delayed_work fallback_work; + struct work_struct exit_work; + struct list_head tctx_list; + struct completion ref_comp; + + /* io-wq management, e.g. thread count */ + u32 iowq_limits[2]; + bool iowq_limits_set; + + struct list_head defer_list; + unsigned sq_thread_idle; }; enum {
Shove all slow path data at the end of ctx and get rid of extra indention. Signed-off-by: Pavel Begunkov <asml.silence@gmail.com> --- io_uring/io_uring_types.h | 81 +++++++++++++++++++-------------------- 1 file changed, 39 insertions(+), 42 deletions(-)