Commit 5282aab8 authored by Andi Kleen's avatar Andi Kleen Committed by Linus Torvalds

[PATCH] x86_64: Remove ia32_sys_call_table export

It was originally added for 2.4 oprofile, but 2.6 oprofile doesn't
need that anymore. Shouldn't be any use in tree anymore and it doesn't
make much sense to export the ia32 syscalls when the main syscalls
are not exported.

I think Adrian Bunk asked for removing it several times.

Also included hunk from Adrian to remove the .globl ia32_sys_call_table
Signed-off-by: default avatarAndi Kleen <ak@suse.de>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 5c0f80fa
...@@ -377,7 +377,6 @@ END(ia32_ptregs_common) ...@@ -377,7 +377,6 @@ END(ia32_ptregs_common)
.section .rodata,"a" .section .rodata,"a"
.align 8 .align 8
.globl ia32_sys_call_table
ia32_sys_call_table: ia32_sys_call_table:
.quad sys_restart_syscall .quad sys_restart_syscall
.quad sys_exit .quad sys_exit
......
...@@ -929,5 +929,3 @@ long sys32_lookup_dcookie(u32 addr_low, u32 addr_high, ...@@ -929,5 +929,3 @@ long sys32_lookup_dcookie(u32 addr_low, u32 addr_high,
return sys_lookup_dcookie(((u64)addr_high << 32) | addr_low, buf, len); return sys_lookup_dcookie(((u64)addr_high << 32) | addr_low, buf, len);
} }
extern unsigned long ia32_sys_call_table[];
EXPORT_SYMBOL(ia32_sys_call_table);
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment