From: Andrew Morton This was missing. Cc: Christoph Lameter Cc: Andi Kleen Signed-off-by: Andrew Morton --- arch/x86_64/ia32/ia32entry.S | 1 + include/asm-x86_64/ia32_unistd.h | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff -puN arch/x86_64/ia32/ia32entry.S~swap-migration-v5-sys_migrate_pages-interface-x86_64-fix arch/x86_64/ia32/ia32entry.S --- devel/arch/x86_64/ia32/ia32entry.S~swap-migration-v5-sys_migrate_pages-interface-x86_64-fix 2006-01-06 23:41:01.000000000 -0800 +++ devel-akpm/arch/x86_64/ia32/ia32entry.S 2006-01-06 23:41:01.000000000 -0800 @@ -671,6 +671,7 @@ ia32_sys_call_table: .quad sys_inotify_init .quad sys_inotify_add_watch .quad sys_inotify_rm_watch + .quad sys_migrate_pages ia32_syscall_end: .rept IA32_NR_syscalls-(ia32_syscall_end-ia32_sys_call_table)/8 .quad ni_syscall diff -puN include/asm-x86_64/ia32_unistd.h~swap-migration-v5-sys_migrate_pages-interface-x86_64-fix include/asm-x86_64/ia32_unistd.h --- devel/include/asm-x86_64/ia32_unistd.h~swap-migration-v5-sys_migrate_pages-interface-x86_64-fix 2006-01-06 23:41:06.000000000 -0800 +++ devel-akpm/include/asm-x86_64/ia32_unistd.h 2006-01-06 23:41:33.000000000 -0800 @@ -299,7 +299,8 @@ #define __NR_ia32_inotify_init 291 #define __NR_ia32_inotify_add_watch 292 #define __NR_ia32_inotify_rm_watch 293 +#define __NR_ia32_migrate_pages 294 -#define IA32_NR_syscalls 294 /* must be > than biggest syscall! */ +#define IA32_NR_syscalls 295 /* must be > than biggest syscall! */ #endif /* _ASM_X86_64_IA32_UNISTD_H_ */ _