linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] signalfd: fix error return code
@ 2024-05-20  9:08 Fedor Pchelkin
  2024-05-20  9:08 ` [PATCH 2/2] signalfd: drop an obsolete comment Fedor Pchelkin
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Fedor Pchelkin @ 2024-05-20  9:08 UTC (permalink / raw)
  To: Jens Axboe, Christian Brauner
  Cc: Fedor Pchelkin, Alexander Viro, Jan Kara, linux-fsdevel,
	linux-kernel, Alexey Khoroshilov, lvc-project

If anon_inode_getfile() fails, return appropriate error code. This looks
like a single typo: the similar code changes in timerfd and userfaultfd
are okay.

Found by Linux Verification Center (linuxtesting.org).

Fixes: fbe38120eb1d ("signalfd: convert to ->read_iter()")
Signed-off-by: Fedor Pchelkin <pchelkin@ispras.ru>
---
 fs/signalfd.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/signalfd.c b/fs/signalfd.c
index 4a5614442dbf..65fe5eed0be4 100644
--- a/fs/signalfd.c
+++ b/fs/signalfd.c
@@ -282,7 +282,7 @@ static int do_signalfd4(int ufd, sigset_t *mask, int flags)
 		if (IS_ERR(file)) {
 			put_unused_fd(ufd);
 			kfree(ctx);
-			return ufd;
+			return PTR_ERR(file);
 		}
 		file->f_mode |= FMODE_NOWAIT;
 
-- 
2.39.2


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2024-05-21 14:24 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-20  9:08 [PATCH 1/2] signalfd: fix error return code Fedor Pchelkin
2024-05-20  9:08 ` [PATCH 2/2] signalfd: drop an obsolete comment Fedor Pchelkin
2024-05-20 12:39   ` Jens Axboe
2024-05-20 12:38 ` [PATCH 1/2] signalfd: fix error return code Jens Axboe
2024-05-21 14:23 ` Christian Brauner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).