diff options
author | Olivier Langlois <olivier@trillion01.com> | 2024-08-11 20:34:46 -0400 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2024-08-12 12:11:42 -0600 |
commit | 48cc7ecd3a68e0fbfa281ef1ed6f6b6cb7638390 (patch) | |
tree | f722ea47844146e3d18b8e2c4246f4d967ec8f07 /io_uring | |
parent | 84f2eecf95018386c145ada19bb45b03bdb80d9e (diff) | |
download | linux-48cc7ecd3a68e0fbfa281ef1ed6f6b6cb7638390.tar.gz linux-48cc7ecd3a68e0fbfa281ef1ed6f6b6cb7638390.tar.bz2 linux-48cc7ecd3a68e0fbfa281ef1ed6f6b6cb7638390.zip |
io_uring/napi: remove duplicate io_napi_entry timeout assignation
io_napi_entry() has 2 calling sites. One of them is unlikely to find an
entry and if it does, the timeout should arguable not be updated.
The other io_napi_entry() calling site is overwriting the update made
by io_napi_entry() so the io_napi_entry() timeout value update has no or
little value and therefore is removed.
Signed-off-by: Olivier Langlois <olivier@trillion01.com>
Link: https://lore.kernel.org/r/145b54ff179f87609e20dffaf5563c07cdbcad1a.1723423275.git.olivier@trillion01.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'io_uring')
-rw-r--r-- | io_uring/napi.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/io_uring/napi.c b/io_uring/napi.c index 73c4159e8405..1de1d4d62925 100644 --- a/io_uring/napi.c +++ b/io_uring/napi.c @@ -26,7 +26,6 @@ static struct io_napi_entry *io_napi_hash_find(struct hlist_head *hash_list, hlist_for_each_entry_rcu(e, hash_list, node) { if (e->napi_id != napi_id) continue; - e->timeout = jiffies + NAPI_TIMEOUT; return e; } |