diff options
author | H. Peter Anvin <hpa@zytor.com> | 2012-02-14 17:46:23 -0500 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2012-02-20 15:52:04 -0500 |
commit | ea499fec48dd771bd92984337fcb57ed4c787e69 (patch) | |
tree | baeeed85d52a5acec79e63203bcdbf037424346a /arch/x86/syscalls | |
parent | 6cbb369f578378cf5b1876766d860ae7c2a94d60 (diff) |
x32: Generate <asm/unistd_64_x32.h>
Generate macros for the *kernel* code to use to refer to x32 system
calls. These have an __NR_x32_ prefix and do not include
__X32_SYSCALL_BIT.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'arch/x86/syscalls')
-rw-r--r-- | arch/x86/syscalls/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/arch/x86/syscalls/Makefile b/arch/x86/syscalls/Makefile index 8051c3134ad1..3236aebc828d 100644 --- a/arch/x86/syscalls/Makefile +++ b/arch/x86/syscalls/Makefile | |||
@@ -35,6 +35,11 @@ syshdr_abi_unistd_64 := common,64 | |||
35 | $(out)/unistd_64.h: $(syscall64) $(syshdr) | 35 | $(out)/unistd_64.h: $(syscall64) $(syshdr) |
36 | $(call if_changed,syshdr) | 36 | $(call if_changed,syshdr) |
37 | 37 | ||
38 | syshdr_abi_unistd_64_x32 := x32 | ||
39 | syshdr_pfx_unistd_64_x32 := x32_ | ||
40 | $(out)/unistd_64_x32.h: $(syscall64) $(syshdr) | ||
41 | $(call if_changed,syshdr) | ||
42 | |||
38 | $(out)/syscalls_32.h: $(syscall32) $(systbl) | 43 | $(out)/syscalls_32.h: $(syscall32) $(systbl) |
39 | $(call if_changed,systbl) | 44 | $(call if_changed,systbl) |
40 | $(out)/syscalls_64.h: $(syscall64) $(systbl) | 45 | $(out)/syscalls_64.h: $(syscall64) $(systbl) |
@@ -42,7 +47,7 @@ $(out)/syscalls_64.h: $(syscall64) $(systbl) | |||
42 | 47 | ||
43 | syshdr-y += unistd_32.h unistd_64.h unistd_x32.h | 48 | syshdr-y += unistd_32.h unistd_64.h unistd_x32.h |
44 | syshdr-y += syscalls_32.h | 49 | syshdr-y += syscalls_32.h |
45 | syshdr-$(CONFIG_X86_64) += unistd_32_ia32.h | 50 | syshdr-$(CONFIG_X86_64) += unistd_32_ia32.h unistd_64_x32.h |
46 | syshdr-$(CONFIG_X86_64) += syscalls_64.h | 51 | syshdr-$(CONFIG_X86_64) += syscalls_64.h |
47 | 52 | ||
48 | targets += $(syshdr-y) | 53 | targets += $(syshdr-y) |