The patch titled Fix build on COMPAT platforms when CONFIG_EPOLL is disabled has been removed from the -mm tree. Its filename was fix-build-on-compat-platforms-when-config_epoll-is-disabled.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: Fix build on COMPAT platforms when CONFIG_EPOLL is disabled From: Atsushi Nemoto <anemo@xxxxxxxxxxxxx> Add missing cond_syscall() entry for compat_sys_epoll_pwait. Signed-off-by: Atsushi Nemoto <anemo@xxxxxxxxxxxxx> Cc: Davide Libenzi <davidel@xxxxxxxxxxxxxxx> Cc: <stable@xxxxxxxxxx> [2.6.25.x, 2.6.26.x] Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/sys_ni.c | 1 + 1 file changed, 1 insertion(+) diff -puN kernel/sys_ni.c~fix-build-on-compat-platforms-when-config_epoll-is-disabled kernel/sys_ni.c --- a/kernel/sys_ni.c~fix-build-on-compat-platforms-when-config_epoll-is-disabled +++ a/kernel/sys_ni.c @@ -59,6 +59,7 @@ cond_syscall(sys_epoll_create); cond_syscall(sys_epoll_ctl); cond_syscall(sys_epoll_wait); cond_syscall(sys_epoll_pwait); +cond_syscall(compat_sys_epoll_pwait); cond_syscall(sys_semget); cond_syscall(sys_semop); cond_syscall(sys_semtimedop); _ Patches currently in -mm which might be from anemo@xxxxxxxxxxxxx are origin.patch mtd-jedec_probe-fix-sst-16-bit-chip-detection.patch mtdpart-separate-main-loop-from-per-partition-code-in-add_mtd_partition.patch mtdpart-handle-most-checkpatch-findings.patch mtdpart-cleanup-and-document-the-erase-region-handling.patch mtdpart-fix-a-division-by-zero-bug.patch mtdpart-handle-remaining-checkpatch-findings.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