The patch titled Subject: eventfs: avoid unused variable warning has been removed from the -mm tree. Its filename was eventfd-dont-take-the-spinlock-in-eventfd_poll-fix.patch This patch was dropped because it was folded into eventfd-dont-take-the-spinlock-in-eventfd_poll.patch ------------------------------------------------------ From: Arnd Bergmann <arnd@xxxxxxxx> Subject: eventfs: avoid unused variable warning An optimization patch from Chris Mason causes build warnings about an unused variable. The patch that broke this is currently in the akpm-current series, so this fixup can be folded into the original patch. I was expecting multiple people to send a patch for this, so I waited a bit at first. Fixes: 567162b87a5c5f ("eventfd: don't take the spinlock in eventfd_poll") Signed-off-by: Arnd Bergmann <arnd@xxxxxxxx> Cc: Chris Mason <clm@xxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/eventfd.c | 1 - 1 file changed, 1 deletion(-) diff -puN fs/eventfd.c~eventfd-dont-take-the-spinlock-in-eventfd_poll-fix fs/eventfd.c --- a/fs/eventfd.c~eventfd-dont-take-the-spinlock-in-eventfd_poll-fix +++ a/fs/eventfd.c @@ -118,7 +118,6 @@ static unsigned int eventfd_poll(struct { struct eventfd_ctx *ctx = file->private_data; unsigned int events = 0; - unsigned long flags; unsigned int count; poll_wait(file, &ctx->wqh, wait); _ Patches currently in -mm which might be from arnd@xxxxxxxx are origin.patch kexec-fix-make-headers_check.patch kexec-simplify-conditional.patch kexec-add-bit-definitions-for-kimage-entry-flags.patch kexec-add-ind_flags-macro.patch eventfd-dont-take-the-spinlock-in-eventfd_poll.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