The patch titled eventfd: clean compile when CONFIG_EVENTFD=n has been removed from the -mm tree. Its filename was eventfd-clean-compile-when-config_eventfd=n.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: eventfd: clean compile when CONFIG_EVENTFD=n From: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Fix gcc warning and add parameter checking when CONFIG_EVENTFD=n: fs/aio.c: In function 'aio_complete': fs/aio.c:955: warning: statement with no effect Signed-off-by: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Cc: Davide Libenzi <davidel@xxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/eventfd.h | 3 ++- 1 files changed, 2 insertions(+), 1 deletion(-) diff -puN include/linux/eventfd.h~eventfd-clean-compile-when-config_eventfd=n include/linux/eventfd.h --- a/include/linux/eventfd.h~eventfd-clean-compile-when-config_eventfd=n +++ a/include/linux/eventfd.h @@ -19,7 +19,8 @@ int eventfd_signal(struct file *file, in #else /* CONFIG_EVENTFD */ #define eventfd_fget(fd) ERR_PTR(-ENOSYS) -#define eventfd_signal(f, n) 0 +static inline int eventfd_signal(struct file *file, int n) +{ return 0; } #endif /* CONFIG_EVENTFD */ _ Patches currently in -mm which might be from randy.dunlap@xxxxxxxxxx are origin.patch alsa-more-section-mismatches.patch pcih-stubs-for-edd-build-error.patch git-acpi.patch git-alsa.patch git-mtd.patch romfs-printk-format-warnings.patch ubi-one-less-bug-usage.patch add-pci_try_set_mwi.patch git-scsi-misc.patch git-unionfs.patch git-ipwireless_cs.patch irda-fix-printk-format.patch mm-merge-populate-and-nopage-into-fault-fixes-nonlinear.patch doc-kernel-parameters-use-x86-32-tag-instead-of-ia-32.patch add-argv_split-fix.patch add-common-orderly_poweroff-fix.patch kconfig-no-strange-misc-devices.patch afs-drop-explicit-extern.patch add-printktime-option-deprecate-time.patch fs-clarify-dummy-member-in-struct.patch sony-laptop-use-null-for-pointer.patch hugetlbfs-use-lib-parser-fix-docs.patch report-that-kernel-is-tainted-if-there-were-an-oops-before.patch doc-oops-tracing-add-code-decode-info.patch doc-oops-tracing-add-code-decode-info-fix.patch schedstats-fix-printk-format.patch kernel-doc-add-tools-doc-in-makefile.patch kernel-doc-fix-unnamed-struct-union-warning.patch kernel-doc-strip-c99-comments.patch kernel-doc-fix-leading-dot-in-man-mode-output.patch kernel-doc-fix-leading-dot-in-man-mode-output-fix.patch profile-likely-unlikely-macros.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