From: Fedor Pchelkin Date: Mon, 20 May 2024 09:08:19 +0000 (+0300) Subject: signalfd: drop an obsolete comment X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=65bea9953715b19371164a8bec4f74fdd22c9e5a;p=linux.git 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 Link: https://lore.kernel.org/r/20240520090819.76342-2-pchelkin@ispras.ru Reviewed-by: Jens Axboe Signed-off-by: Christian Brauner --- diff --git a/fs/signalfd.c b/fs/signalfd.c index 65fe5eed0be4c..ec7b2da2477a4 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);