File tree Expand file tree Collapse file tree 6 files changed +14
-16
lines changed Expand file tree Collapse file tree 6 files changed +14
-16
lines changed Original file line number Diff line number Diff line change 1
1
2
2
3
3
generic-y += clkdev.h
4
+ generic-y += export.h
4
5
generic-y += irq_work.h
5
6
generic-y += mcs_spinlock.h
6
7
generic-y += mm-arch-hooks.h
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ obj-y += entry.o reipl.o relocate_kernel.o
58
58
59
59
extra-y += head.o head64.o vmlinux.lds
60
60
61
- obj-$(CONFIG_MODULES) += s390_ksyms.o module.o
61
+ obj-$(CONFIG_MODULES) += module.o
62
62
obj-$(CONFIG_SMP) += smp.o
63
63
obj-$(CONFIG_SCHED_TOPOLOGY) += topology.o
64
64
obj-$(CONFIG_HIBERNATION) += suspend.o swsusp.o
Original file line number Diff line number Diff line change 23
23
#include <asm/vx-insn.h>
24
24
#include <asm/setup.h>
25
25
#include <asm/nmi.h>
26
+ #include <asm/export.h>
26
27
27
28
__PT_R0 = __PT_GPRS
28
29
__PT_R1 = __PT_GPRS + 8
@@ -259,6 +260,8 @@ sie_exit:
259
260
260
261
EX_TABLE(.Lrewind_pad,.Lsie_fault)
261
262
EX_TABLE(sie_exit,.Lsie_fault)
263
+ EXPORT_SYMBOL(sie64a)
264
+ EXPORT_SYMBOL(sie_exit)
262
265
#endif
263
266
264
267
/*
@@ -825,6 +828,9 @@ ENTRY(save_fpu_regs)
825
828
oi __LC_CPU_FLAGS+7 ,_CIF_FPU
826
829
br %r14
827
830
.Lsave_fpu_regs_end:
831
+ #if IS_ENABLED(CONFIG_KVM)
832
+ EXPORT_SYMBOL(save_fpu_regs)
833
+ #endif
828
834
829
835
/*
830
836
* Load floating-point controls and floating-point or vector registers.
Original file line number Diff line number Diff line change 9
9
#include <asm/asm-offsets.h>
10
10
#include <asm/ftrace.h>
11
11
#include <asm/ptrace.h>
12
+ #include <asm/export.h>
12
13
13
14
.section .kprobes.text, "ax"
14
15
@@ -23,6 +24,8 @@ ENTRY(ftrace_stub)
23
24
ENTRY(_mcount)
24
25
br %r14
25
26
27
+ EXPORT_SYMBOL(_mcount)
28
+
26
29
ENTRY(ftrace_caller)
27
30
.globl ftrace_regs_caller
28
31
.set ftrace_regs_caller,ftrace_caller
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 5
5
*/
6
6
7
7
#include <linux/linkage.h>
8
+ #include <asm/export.h>
8
9
9
10
/*
10
11
* memset implementation
@@ -60,6 +61,7 @@ ENTRY(memset)
60
61
xc 0 (1 ,%r1),0 (%r1)
61
62
.Lmemset_mvc:
62
63
mvc 1 (1 ,%r1),0 (%r1)
64
+ EXPORT_SYMBOL(memset)
63
65
64
66
/*
65
67
* memcpy implementation
@@ -86,3 +88,4 @@ ENTRY(memcpy)
86
88
j .Lmemcpy_rest
87
89
.Lmemcpy_mvc:
88
90
mvc 0 (1 ,%r1),0 (%r3)
91
+ EXPORT_SYMBOL(memcpy)
You can’t perform that action at this time.
0 commit comments