diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2009-12-15 16:28:13 -0600 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2009-12-15 16:28:15 +1030 |
commit | e6428047725d72d63c1d9c4ba852e635e3ffe52a (patch) | |
tree | f20db143e477a9cc7415725888e0861ca3a4cae2 /arch/x86 | |
parent | 1abff64d49ae24a77ae1e191fa58b725c5991c7e (diff) | |
download | op-kernel-dev-e6428047725d72d63c1d9c4ba852e635e3ffe52a.zip op-kernel-dev-e6428047725d72d63c1d9c4ba852e635e3ffe52a.tar.gz |
x86: don't export inline function
For CONFIG_PARAVIRT, load_gs_index is an inline function (it's #defined
to native_load_gs_index otherwise).
Exporting an inline function breaks the new assembler-based alphabetical
sorted symbol list:
Today's linux-next build (x86_64 allmodconfig) failed like this:
.tmp_exports-asm.o: In function `__ksymtab_load_gs_index':
(__ksymtab_sorted+0x5b40): undefined reference to `load_gs_index'
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
To: x86@kernel.org
Cc: alan-jenkins@tuffmail.co.uk
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/kernel/x8664_ksyms_64.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/x86/kernel/x8664_ksyms_64.c b/arch/x86/kernel/x8664_ksyms_64.c index a102976..084c1ad 100644 --- a/arch/x86/kernel/x8664_ksyms_64.c +++ b/arch/x86/kernel/x8664_ksyms_64.c @@ -56,4 +56,6 @@ EXPORT_SYMBOL(__memcpy); EXPORT_SYMBOL(empty_zero_page); EXPORT_SYMBOL(init_level4_pgt); -EXPORT_SYMBOL(load_gs_index); +#ifndef CONFIG_PARAVIRT +EXPORT_SYMBOL(native_load_gs_index); +#endif |