The patch titled tiny signalfd cleanup has been added to the -mm tree. Its filename is tiny-signalfd-cleanup.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: tiny signalfd cleanup From: Ulrich Drepper <drepper@xxxxxxxxxx> This is probably a leftover from a time when the return wasn't there yet. Now the extra assignment is just irritating. Signed-off-by: Ulrich Drepper <drepper@xxxxxxxxxx> Cc: Davide Libenzi <davidel@xxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/signalfd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/signalfd.c~tiny-signalfd-cleanup fs/signalfd.c --- a/fs/signalfd.c~tiny-signalfd-cleanup +++ a/fs/signalfd.c @@ -320,7 +320,7 @@ asmlinkage long sys_signalfd(int ufd, si if (sizemask != sizeof(sigset_t) || copy_from_user(&sigmask, user_mask, sizeof(sigmask))) - return error = -EINVAL; + return -EINVAL; sigdelsetmask(&sigmask, sigmask(SIGKILL) | sigmask(SIGSTOP)); signotset(&sigmask); _ Patches currently in -mm which might be from drepper@xxxxxxxxxx are fallocate-syscall-interface-deficiency.patch uml-fix-aio-compilation-bug.patch tiny-signalfd-cleanup.patch futex-pass-nr_wake2-to-futex_wake_op.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html