diff options
author | Jens Axboe <axboe@kernel.dk> | 2019-12-11 14:10:35 -0700 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2020-01-20 17:01:53 -0700 |
commit | 6e802a4ba056a6f2f51ac9d54eead3ed6f9829a2 (patch) | |
tree | 1fcd466f66bb1d54d2737ecbdec83a500649961b /fs/file.c | |
parent | 15b71abe7b52df214785dde0de9f581cc0216d17 (diff) | |
download | linux-6e802a4ba056a6f2f51ac9d54eead3ed6f9829a2.tar.bz2 |
fs: move filp_close() outside of __close_fd_get_file()
Just one caller of this, and just use filp_close() there manually.
This is important to allow async close/removal of the fd.
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'fs/file.c')
-rw-r--r-- | fs/file.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/fs/file.c b/fs/file.c index 3da91a112bab..fb7081bfac2b 100644 --- a/fs/file.c +++ b/fs/file.c @@ -642,7 +642,9 @@ out_unlock: EXPORT_SYMBOL(__close_fd); /* for ksys_close() */ /* - * variant of __close_fd that gets a ref on the file for later fput + * variant of __close_fd that gets a ref on the file for later fput. + * The caller must ensure that filp_close() called on the file, and then + * an fput(). */ int __close_fd_get_file(unsigned int fd, struct file **res) { @@ -662,7 +664,7 @@ int __close_fd_get_file(unsigned int fd, struct file **res) spin_unlock(&files->file_lock); get_file(file); *res = file; - return filp_close(file, files); + return 0; out_unlock: spin_unlock(&files->file_lock); |