diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2024-08-01 16:03:19 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2024-10-07 13:34:41 -0400 |
commit | 1fa4ffd8e6f6d001da27f00382af79bad0336091 (patch) | |
tree | 78dab44686bca3ed88fc15f8ae765a7d8e73807c /fs/file.c | |
parent | be5498cac2ddb112c5bd7433d5e834a1a2493427 (diff) | |
download | linux-1fa4ffd8e6f6d001da27f00382af79bad0336091.tar.gz linux-1fa4ffd8e6f6d001da27f00382af79bad0336091.tar.bz2 linux-1fa4ffd8e6f6d001da27f00382af79bad0336091.zip |
close_files(): don't bother with xchg()
At that point nobody else has references to the victim files_struct;
as the matter of fact, the caller will free it immediately after
close_files() returns, with no RCU delays or anything of that sort.
That's why we are not protecting against fdtable reallocation on
expansion, not cleaning the bitmaps, etc. There's no point
zeroing the pointers in ->fd[] either, let alone make that an
atomic operation.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/file.c')
-rw-r--r-- | fs/file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/file.c b/fs/file.c index 991860ee7848..8770010170c5 100644 --- a/fs/file.c +++ b/fs/file.c @@ -413,7 +413,7 @@ static struct fdtable *close_files(struct files_struct * files) set = fdt->open_fds[j++]; while (set) { if (set & 1) { - struct file * file = xchg(&fdt->fd[i], NULL); + struct file *file = fdt->fd[i]; if (file) { filp_close(file, files); cond_resched(); |