1 /* SPDX-License-Identifier: GPL-2.0-only */
2 #ifndef __ASM_GENERIC_EXPORT_H
3 #define __ASM_GENERIC_EXPORT_H
8 #ifdef CONFIG_HAVE_ARCH_PREL32_RELOCATIONS
10 #elif defined(CONFIG_64BIT)
19 .macro __put
, val
, name
20 #ifdef CONFIG_HAVE_ARCH_PREL32_RELOCATIONS
21 .long \val
- ., \name
- ., 0
22 #elif defined(CONFIG_64BIT)
30 * note on .section use: we specify progbits since usage of the "M" (SHF_MERGE)
31 * section flag requires it. Use '%progbits' instead of '@progbits' since the
32 * former apparently works on all arches according to the binutils source.
35 .macro ___EXPORT_SYMBOL name
,val
,sec
37 .section ___ksymtab\sec
+\name
,"a"
40 __put
\val
, __kstrtab_
\name
42 .section __ksymtab_strings
,"aMS",%progbits
,1
46 #ifdef CONFIG_MODVERSIONS
47 .section ___kcrctab\sec
+\name
,"a"
49 #if defined(CONFIG_MODULE_REL_CRCS)
60 #if defined(CONFIG_TRIM_UNUSED_KSYMS)
62 #include <linux/kconfig.h>
63 #include <generated/autoksyms.h>
65 .macro __ksym_marker sym
66 .section
".discard.ksym","a"
71 #define __EXPORT_SYMBOL(sym, val, sec) \
73 __cond_export_sym(sym, val, sec, __is_defined(__KSYM_##sym))
74 #define __cond_export_sym(sym, val, sec, conf) \
75 ___cond_export_sym(sym, val, sec, conf)
76 #define ___cond_export_sym(sym, val, sec, enabled) \
77 __cond_export_sym_##enabled(sym, val, sec)
78 #define __cond_export_sym_1(sym, val, sec) ___EXPORT_SYMBOL sym, val, sec
79 #define __cond_export_sym_0(sym, val, sec) /* nothing */
82 #define __EXPORT_SYMBOL(sym, val, sec) ___EXPORT_SYMBOL sym, val, sec
85 #define EXPORT_SYMBOL(name) \
86 __EXPORT_SYMBOL(name, KSYM_FUNC(name),)
87 #define EXPORT_SYMBOL_GPL(name) \
88 __EXPORT_SYMBOL(name, KSYM_FUNC(name), _gpl)
89 #define EXPORT_DATA_SYMBOL(name) \
90 __EXPORT_SYMBOL(name, name,)
91 #define EXPORT_DATA_SYMBOL_GPL(name) \
92 __EXPORT_SYMBOL(name, name,_gpl)