ia64: move exports to definitions
Here we have another kind of deviation from the default case - a difference between exporting functions and non-functions. EXPORT_DATA_SYMBOL... is really different from EXPORT_SYMBOL... on ia64, and we need to use the right one when moving exports from *.c where C compiler has the required information to *.S, where we need to supply it manually. parisc64 will be another one like that. Tested-by: Tony Luck <tony.luck@intel.com> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
@@ -11,6 +11,7 @@
|
||||
|
||||
#include <asm/asmmacro.h>
|
||||
#include <asm/page.h>
|
||||
#include <asm/export.h>
|
||||
|
||||
#ifdef CONFIG_ITANIUM
|
||||
# define L3_LINE_SIZE 64 // Itanium L3 line size
|
||||
@@ -74,3 +75,4 @@ GLOBAL_ENTRY(clear_page)
|
||||
mov ar.lc = saved_lc // restore lc
|
||||
br.ret.sptk.many rp
|
||||
END(clear_page)
|
||||
EXPORT_SYMBOL(clear_page)
|
||||
|
@@ -12,6 +12,7 @@
|
||||
*/
|
||||
|
||||
#include <asm/asmmacro.h>
|
||||
#include <asm/export.h>
|
||||
|
||||
//
|
||||
// arguments
|
||||
@@ -207,3 +208,4 @@ GLOBAL_ENTRY(__do_clear_user)
|
||||
mov ar.lc=saved_lc
|
||||
br.ret.sptk.many rp
|
||||
END(__do_clear_user)
|
||||
EXPORT_SYMBOL(__do_clear_user)
|
||||
|
@@ -16,6 +16,7 @@
|
||||
*/
|
||||
#include <asm/asmmacro.h>
|
||||
#include <asm/page.h>
|
||||
#include <asm/export.h>
|
||||
|
||||
#define PIPE_DEPTH 3
|
||||
#define EPI p[PIPE_DEPTH-1]
|
||||
@@ -96,3 +97,4 @@ GLOBAL_ENTRY(copy_page)
|
||||
mov ar.lc=saved_lc
|
||||
br.ret.sptk.many rp
|
||||
END(copy_page)
|
||||
EXPORT_SYMBOL(copy_page)
|
||||
|
@@ -61,6 +61,7 @@
|
||||
*/
|
||||
#include <asm/asmmacro.h>
|
||||
#include <asm/page.h>
|
||||
#include <asm/export.h>
|
||||
|
||||
#define PREFETCH_DIST 8 // McKinley sustains 16 outstanding L2 misses (8 ld, 8 st)
|
||||
|
||||
@@ -183,3 +184,4 @@ GLOBAL_ENTRY(copy_page)
|
||||
mov pr = saved_pr, -1
|
||||
br.ret.sptk.many rp
|
||||
END(copy_page)
|
||||
EXPORT_SYMBOL(copy_page)
|
||||
|
@@ -30,6 +30,7 @@
|
||||
*/
|
||||
|
||||
#include <asm/asmmacro.h>
|
||||
#include <asm/export.h>
|
||||
|
||||
//
|
||||
// Tuneable parameters
|
||||
@@ -608,3 +609,4 @@ GLOBAL_ENTRY(__copy_user)
|
||||
mov ar.pfs=saved_pfs
|
||||
br.ret.sptk.many rp
|
||||
END(__copy_user)
|
||||
EXPORT_SYMBOL(__copy_user)
|
||||
|
@@ -8,6 +8,7 @@
|
||||
*/
|
||||
|
||||
#include <asm/asmmacro.h>
|
||||
#include <asm/export.h>
|
||||
|
||||
|
||||
/*
|
||||
@@ -60,6 +61,7 @@ GLOBAL_ENTRY(flush_icache_range)
|
||||
mov ar.lc=r3 // restore ar.lc
|
||||
br.ret.sptk.many rp
|
||||
END(flush_icache_range)
|
||||
EXPORT_SYMBOL_GPL(flush_icache_range)
|
||||
|
||||
/*
|
||||
* clflush_cache_range(start,size)
|
||||
|
@@ -15,6 +15,7 @@
|
||||
*/
|
||||
|
||||
#include <asm/asmmacro.h>
|
||||
#include <asm/export.h>
|
||||
|
||||
#ifdef MODULO
|
||||
# define OP mod
|
||||
@@ -81,3 +82,4 @@ GLOBAL_ENTRY(NAME)
|
||||
getf.sig r8 = f6 // transfer result to result register
|
||||
br.ret.sptk.many rp
|
||||
END(NAME)
|
||||
EXPORT_SYMBOL(NAME)
|
||||
|
@@ -15,6 +15,7 @@
|
||||
*/
|
||||
|
||||
#include <asm/asmmacro.h>
|
||||
#include <asm/export.h>
|
||||
|
||||
#ifdef MODULO
|
||||
# define OP mod
|
||||
@@ -78,3 +79,4 @@ GLOBAL_ENTRY(NAME)
|
||||
getf.sig r8 = f11 // transfer result to result register
|
||||
br.ret.sptk.many rp
|
||||
END(NAME)
|
||||
EXPORT_SYMBOL(NAME)
|
||||
|
@@ -13,6 +13,7 @@
|
||||
*/
|
||||
|
||||
#include <asm/asmmacro.h>
|
||||
#include <asm/export.h>
|
||||
|
||||
/*
|
||||
* Since we know that most likely this function is called with buf aligned
|
||||
@@ -92,6 +93,7 @@ GLOBAL_ENTRY(ip_fast_csum)
|
||||
mov b0=r34
|
||||
br.ret.sptk.many b0
|
||||
END(ip_fast_csum)
|
||||
EXPORT_SYMBOL(ip_fast_csum)
|
||||
|
||||
GLOBAL_ENTRY(csum_ipv6_magic)
|
||||
ld4 r20=[in0],4
|
||||
@@ -142,3 +144,4 @@ GLOBAL_ENTRY(csum_ipv6_magic)
|
||||
andcm r8=r9,r8
|
||||
br.ret.sptk.many b0
|
||||
END(csum_ipv6_magic)
|
||||
EXPORT_SYMBOL(csum_ipv6_magic)
|
||||
|
@@ -14,6 +14,7 @@
|
||||
* David Mosberger-Tang <davidm@hpl.hp.com>
|
||||
*/
|
||||
#include <asm/asmmacro.h>
|
||||
#include <asm/export.h>
|
||||
|
||||
GLOBAL_ENTRY(memcpy)
|
||||
|
||||
@@ -299,3 +300,4 @@ GLOBAL_ENTRY(memcpy)
|
||||
COPY(56, 0)
|
||||
|
||||
END(memcpy)
|
||||
EXPORT_SYMBOL(memcpy)
|
||||
|
@@ -15,6 +15,7 @@
|
||||
*/
|
||||
#include <asm/asmmacro.h>
|
||||
#include <asm/page.h>
|
||||
#include <asm/export.h>
|
||||
|
||||
#define EK(y...) EX(y)
|
||||
|
||||
@@ -78,6 +79,7 @@ GLOBAL_ENTRY(memcpy)
|
||||
br.cond.sptk .common_code
|
||||
;;
|
||||
END(memcpy)
|
||||
EXPORT_SYMBOL(memcpy)
|
||||
GLOBAL_ENTRY(__copy_user)
|
||||
.prologue
|
||||
// check dest alignment
|
||||
@@ -664,3 +666,4 @@ EK(.ex_handler, (p17) st8 [dst1]=r39,8); \
|
||||
|
||||
/* end of McKinley specific optimization */
|
||||
END(__copy_user)
|
||||
EXPORT_SYMBOL(__copy_user)
|
||||
|
@@ -18,6 +18,7 @@
|
||||
to get peak speed when value = 0. */
|
||||
|
||||
#include <asm/asmmacro.h>
|
||||
#include <asm/export.h>
|
||||
#undef ret
|
||||
|
||||
#define dest in0
|
||||
@@ -360,3 +361,4 @@ GLOBAL_ENTRY(memset)
|
||||
br.ret.sptk.many rp
|
||||
}
|
||||
END(memset)
|
||||
EXPORT_SYMBOL(memset)
|
||||
|
@@ -17,6 +17,7 @@
|
||||
*/
|
||||
|
||||
#include <asm/asmmacro.h>
|
||||
#include <asm/export.h>
|
||||
|
||||
//
|
||||
//
|
||||
@@ -190,3 +191,4 @@ GLOBAL_ENTRY(strlen)
|
||||
mov ar.pfs=saved_pfs // because of ar.ec, restore no matter what
|
||||
br.ret.sptk.many rp // end of successful recovery code
|
||||
END(strlen)
|
||||
EXPORT_SYMBOL(strlen)
|
||||
|
@@ -16,6 +16,7 @@
|
||||
*/
|
||||
|
||||
#include <asm/asmmacro.h>
|
||||
#include <asm/export.h>
|
||||
|
||||
//
|
||||
// int strlen_user(char *)
|
||||
@@ -196,3 +197,4 @@ GLOBAL_ENTRY(__strlen_user)
|
||||
mov ar.pfs=saved_pfs // because of ar.ec, restore no matter what
|
||||
br.ret.sptk.many rp
|
||||
END(__strlen_user)
|
||||
EXPORT_SYMBOL(__strlen_user)
|
||||
|
@@ -17,6 +17,7 @@
|
||||
*/
|
||||
|
||||
#include <asm/asmmacro.h>
|
||||
#include <asm/export.h>
|
||||
|
||||
GLOBAL_ENTRY(__strncpy_from_user)
|
||||
alloc r2=ar.pfs,3,0,0,0
|
||||
@@ -42,3 +43,4 @@ GLOBAL_ENTRY(__strncpy_from_user)
|
||||
[.Lexit:]
|
||||
br.ret.sptk.many rp
|
||||
END(__strncpy_from_user)
|
||||
EXPORT_SYMBOL(__strncpy_from_user)
|
||||
|
@@ -13,6 +13,7 @@
|
||||
*/
|
||||
|
||||
#include <asm/asmmacro.h>
|
||||
#include <asm/export.h>
|
||||
|
||||
GLOBAL_ENTRY(__strnlen_user)
|
||||
.prologue
|
||||
@@ -43,3 +44,4 @@ GLOBAL_ENTRY(__strnlen_user)
|
||||
mov ar.lc=r16 // restore ar.lc
|
||||
br.ret.sptk.many rp
|
||||
END(__strnlen_user)
|
||||
EXPORT_SYMBOL(__strnlen_user)
|
||||
|
@@ -14,6 +14,7 @@
|
||||
*/
|
||||
|
||||
#include <asm/asmmacro.h>
|
||||
#include <asm/export.h>
|
||||
|
||||
GLOBAL_ENTRY(xor_ia64_2)
|
||||
.prologue
|
||||
@@ -51,6 +52,7 @@ GLOBAL_ENTRY(xor_ia64_2)
|
||||
mov pr = r29, -1
|
||||
br.ret.sptk.few rp
|
||||
END(xor_ia64_2)
|
||||
EXPORT_SYMBOL(xor_ia64_2)
|
||||
|
||||
GLOBAL_ENTRY(xor_ia64_3)
|
||||
.prologue
|
||||
@@ -91,6 +93,7 @@ GLOBAL_ENTRY(xor_ia64_3)
|
||||
mov pr = r29, -1
|
||||
br.ret.sptk.few rp
|
||||
END(xor_ia64_3)
|
||||
EXPORT_SYMBOL(xor_ia64_3)
|
||||
|
||||
GLOBAL_ENTRY(xor_ia64_4)
|
||||
.prologue
|
||||
@@ -134,6 +137,7 @@ GLOBAL_ENTRY(xor_ia64_4)
|
||||
mov pr = r29, -1
|
||||
br.ret.sptk.few rp
|
||||
END(xor_ia64_4)
|
||||
EXPORT_SYMBOL(xor_ia64_4)
|
||||
|
||||
GLOBAL_ENTRY(xor_ia64_5)
|
||||
.prologue
|
||||
@@ -182,3 +186,4 @@ GLOBAL_ENTRY(xor_ia64_5)
|
||||
mov pr = r29, -1
|
||||
br.ret.sptk.few rp
|
||||
END(xor_ia64_5)
|
||||
EXPORT_SYMBOL(xor_ia64_5)
|
||||
|
Reference in New Issue
Block a user