Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

io_uring/eventfd: remove unused ctx->evfd_last_cq_tail member

A previous commit got rid of any use of this member, but forgot to
remove it. Kill it.

Fixes: f4bb2f65bb81 ("io_uring/eventfd: move ctx->evfd_last_cq_tail into io_ev_fd")
Signed-off-by: Jens Axboe <axboe@kernel.dk>

+3 -4
+3 -4
include/linux/io_uring_types.h
··· 442 442 struct list_head defer_list; 443 443 unsigned nr_drained; 444 444 445 + /* protected by ->completion_lock */ 446 + unsigned nr_req_allocated; 447 + 445 448 #ifdef CONFIG_NET_RX_BUSY_POLL 446 449 struct list_head napi_list; /* track busy poll napi_id */ 447 450 spinlock_t napi_lock; /* napi_list lock */ ··· 456 453 457 454 DECLARE_HASHTABLE(napi_ht, 4); 458 455 #endif 459 - 460 - /* protected by ->completion_lock */ 461 - unsigned evfd_last_cq_tail; 462 - unsigned nr_req_allocated; 463 456 464 457 /* 465 458 * Protection for resize vs mmap races - both the mmap and resize