aboutsummaryrefslogtreecommitdiffstats
path: root/io_uring
diff options
context:
space:
mode:
authorChristian Brauner <brauner@kernel.org>2023-12-21 13:21:52 +0100
committerChristian Brauner <brauner@kernel.org>2023-12-21 13:21:52 +0100
commit2137e1564267001b25143d21bc619189c1f74bc6 (patch)
treee5d680049a77852f4cde8aa396c0faa72de4c854 /io_uring
parent1bfc466b13cf6652ba227c282c27a30ffede69a5 (diff)
parent4e94ddfe2aab72139acb8d5372fac9e6c3f3e383 (diff)
downloadlinux-2137e1564267001b25143d21bc619189c1f74bc6.tar.gz
Merge branch 'vfs.file'
Bring in the changes to the file infrastructure for this cycle. Mostly cleanups and some performance tweaks. * file: remove __receive_fd() * file: stop exposing receive_fd_user() * fs: replace f_rcuhead with f_task_work * file: remove pointless wrapper * file: s/close_fd_get_file()/file_close_fd()/g * Improve __fget_files_rcu() code generation (and thus __fget_light()) * file: massage cleanup of files that failed to open Signed-off-by: Christian Brauner <brauner@kernel.org>
Diffstat (limited to 'io_uring')
-rw-r--r--io_uring/openclose.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_uring/openclose.c b/io_uring/openclose.c
index fb73adb890674b..74fc22461f48f3 100644
--- a/io_uring/openclose.c
+++ b/io_uring/openclose.c
@@ -241,7 +241,7 @@ int io_close(struct io_kiocb *req, unsigned int issue_flags)
return -EAGAIN;
}
- file = __close_fd_get_file(close->fd);
+ file = file_close_fd_locked(files, close->fd);
spin_unlock(&files->file_lock);
if (!file)
goto err;