The patch titled m68k syscall updates has been added to the -mm tree. Its filename is m68k-syscall-updates.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: m68k syscall updates From: Geert Uytterhoeven <geert@xxxxxxxxxxxxxx> Add some missing system calls (recent udev needs them) Signed-off-by: Kars de Jong <jongk@xxxxxxxxxxxxxx> Signed-off-by: Geert Uytterhoeven <geert@xxxxxxxxxxxxxx> Cc: Roman Zippel <zippel@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/m68k/kernel/entry.S | 5 +++++ include/asm-m68k/unistd.h | 7 ++++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff -puN arch/m68k/kernel/entry.S~m68k-syscall-updates arch/m68k/kernel/entry.S --- a/arch/m68k/kernel/entry.S~m68k-syscall-updates +++ a/arch/m68k/kernel/entry.S @@ -706,4 +706,9 @@ sys_call_table: .long sys_add_key .long sys_request_key /* 280 */ .long sys_keyctl + .long sys_ioprio_set + .long sys_ioprio_get + .long sys_inotify_init + .long sys_inotify_add_watch /* 285 */ + .long sys_inotify_rm_watch diff -puN include/asm-m68k/unistd.h~m68k-syscall-updates include/asm-m68k/unistd.h --- a/include/asm-m68k/unistd.h~m68k-syscall-updates +++ a/include/asm-m68k/unistd.h @@ -284,10 +284,15 @@ #define __NR_add_key 279 #define __NR_request_key 280 #define __NR_keyctl 281 +#define __NR_ioprio_set 282 +#define __NR_ioprio_get 283 +#define __NR_inotify_init 284 +#define __NR_inotify_add_watch 285 +#define __NR_inotify_rm_watch 286 #ifdef __KERNEL__ -#define NR_syscalls 282 +#define NR_syscalls 287 #include <linux/err.h> /* user-visible error numbers are in the range -1 - -MAX_ERRNO: see _ Patches currently in -mm which might be from geert@xxxxxxxxxxxxxx are m68k-syscall-updates.patch m68k-hp300-enable-hil-configuration-options.patch m68k-atari-interrupt-updates.patch m68k-apollo-remove-obsolete-arch-m68k-apollo-dmac.patch m68k-mvme167-serial167-is-no-longer-broken.patch m68k-mvme167-serial167-tty-flip-buffer-updates.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