summaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorFedor Pchelkin <pchelkin@ispras.ru>2024-05-20 12:08:19 +0300
committerChristian Brauner <brauner@kernel.org>2024-05-24 14:34:07 +0300
commit65bea9953715b19371164a8bec4f74fdd22c9e5a (patch)
tree616f2aee71427a22a4c0b17b66dfc36f54108c97 /fs
parentf826bc9d6fc2f0e089fb8d104415d72e4d2e204c (diff)
downloadlinux-65bea9953715b19371164a8bec4f74fdd22c9e5a.tar.xz
signalfd: drop an obsolete comment
Commit fbe38120eb1d ("signalfd: convert to ->read_iter()") removed the call to anon_inode_getfd() by splitting fd setup into two parts. Drop the comment referencing the internal details of that function. Signed-off-by: Fedor Pchelkin <pchelkin@ispras.ru> Link: https://lore.kernel.org/r/20240520090819.76342-2-pchelkin@ispras.ru Reviewed-by: Jens Axboe <axboe@kernel.dk> Signed-off-by: Christian Brauner <brauner@kernel.org>
Diffstat (limited to 'fs')
-rw-r--r--fs/signalfd.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/fs/signalfd.c b/fs/signalfd.c
index 65fe5eed0be4..ec7b2da2477a 100644
--- a/fs/signalfd.c
+++ b/fs/signalfd.c
@@ -286,10 +286,6 @@ static int do_signalfd4(int ufd, sigset_t *mask, int flags)
}
file->f_mode |= FMODE_NOWAIT;
- /*
- * When we call this, the initialization must be complete, since
- * anon_inode_getfd() will install the fd.
- */
fd_install(ufd, file);
} else {
struct fd f = fdget(ufd);