The patch titled Subject: ia64: increase NR_syscalls to match size of syscall table has been added to the -mm tree. Its filename is mm-mlock-add-new-mlock-munlock-and-munlockall-system-calls-fix-4.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/mm-mlock-add-new-mlock-munlock-and-munlockall-system-calls-fix-4.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/mm-mlock-add-new-mlock-munlock-and-munlockall-system-calls-fix-4.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Guenter Roeck <linux@xxxxxxxxxxxx> Subject: ia64: increase NR_syscalls to match size of syscall table Commit 05aa30a22eff ("mm: mlock: add new mlock, munlock, and munlockall system calls") added new system calls, but did not increase the size of the syscall table for the ia64 architecture, resulting in the following build error. arch/ia64/kernel/entry.S: Assembler messages: arch/ia64/kernel/entry.S:1775: Error: attempt to move .org backwards Fixes: 05aa30a22eff ("mm: mlock: add new mlock, munlock, and munlockall system calls") Signed-off-by: Guenter Roeck <linux@xxxxxxxxxxxx> Cc: Eric B Munson <emunson@xxxxxxxxxx> Cc: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/ia64/include/asm/unistd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN arch/ia64/include/asm/unistd.h~mm-mlock-add-new-mlock-munlock-and-munlockall-system-calls-fix-4 arch/ia64/include/asm/unistd.h --- a/arch/ia64/include/asm/unistd.h~mm-mlock-add-new-mlock-munlock-and-munlockall-system-calls-fix-4 +++ a/arch/ia64/include/asm/unistd.h @@ -11,7 +11,7 @@ -#define NR_syscalls 319 /* length of syscall table */ +#define NR_syscalls 322 /* length of syscall table */ /* * The following defines stop scripts/checksyscalls.sh from complaining about _ Patches currently in -mm which might be from linux@xxxxxxxxxxxx are mm-mlock-add-new-mlock-munlock-and-munlockall-system-calls-fix-4.patch linux-next.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