diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /arch/s390/kernel/s390_ksyms.c |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'arch/s390/kernel/s390_ksyms.c')
-rw-r--r-- | arch/s390/kernel/s390_ksyms.c | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/arch/s390/kernel/s390_ksyms.c b/arch/s390/kernel/s390_ksyms.c new file mode 100644 index 000000000000..11fd6d556d8f --- /dev/null +++ b/arch/s390/kernel/s390_ksyms.c | |||
@@ -0,0 +1,65 @@ | |||
1 | /* | ||
2 | * arch/s390/kernel/s390_ksyms.c | ||
3 | * | ||
4 | * S390 version | ||
5 | */ | ||
6 | #include <linux/config.h> | ||
7 | #include <linux/highuid.h> | ||
8 | #include <linux/module.h> | ||
9 | #include <linux/mm.h> | ||
10 | #include <linux/smp.h> | ||
11 | #include <linux/syscalls.h> | ||
12 | #include <linux/interrupt.h> | ||
13 | #include <linux/ioctl32.h> | ||
14 | #include <asm/checksum.h> | ||
15 | #include <asm/cpcmd.h> | ||
16 | #include <asm/delay.h> | ||
17 | #include <asm/pgalloc.h> | ||
18 | #include <asm/setup.h> | ||
19 | #ifdef CONFIG_IP_MULTICAST | ||
20 | #include <net/arp.h> | ||
21 | #endif | ||
22 | |||
23 | /* | ||
24 | * memory management | ||
25 | */ | ||
26 | EXPORT_SYMBOL(_oi_bitmap); | ||
27 | EXPORT_SYMBOL(_ni_bitmap); | ||
28 | EXPORT_SYMBOL(_zb_findmap); | ||
29 | EXPORT_SYMBOL(_sb_findmap); | ||
30 | EXPORT_SYMBOL(__copy_from_user_asm); | ||
31 | EXPORT_SYMBOL(__copy_to_user_asm); | ||
32 | EXPORT_SYMBOL(__copy_in_user_asm); | ||
33 | EXPORT_SYMBOL(__clear_user_asm); | ||
34 | EXPORT_SYMBOL(__strncpy_from_user_asm); | ||
35 | EXPORT_SYMBOL(__strnlen_user_asm); | ||
36 | EXPORT_SYMBOL(diag10); | ||
37 | EXPORT_SYMBOL(default_storage_key); | ||
38 | |||
39 | /* | ||
40 | * semaphore ops | ||
41 | */ | ||
42 | EXPORT_SYMBOL(__up); | ||
43 | EXPORT_SYMBOL(__down); | ||
44 | EXPORT_SYMBOL(__down_interruptible); | ||
45 | |||
46 | /* | ||
47 | * binfmt_elf loader | ||
48 | */ | ||
49 | extern int dump_fpu (struct pt_regs * regs, s390_fp_regs *fpregs); | ||
50 | EXPORT_SYMBOL(dump_fpu); | ||
51 | EXPORT_SYMBOL(overflowuid); | ||
52 | EXPORT_SYMBOL(overflowgid); | ||
53 | EXPORT_SYMBOL(empty_zero_page); | ||
54 | |||
55 | /* | ||
56 | * misc. | ||
57 | */ | ||
58 | EXPORT_SYMBOL(machine_flags); | ||
59 | EXPORT_SYMBOL(__udelay); | ||
60 | EXPORT_SYMBOL(kernel_thread); | ||
61 | EXPORT_SYMBOL(csum_fold); | ||
62 | EXPORT_SYMBOL(console_mode); | ||
63 | EXPORT_SYMBOL(console_devno); | ||
64 | EXPORT_SYMBOL(console_irq); | ||
65 | EXPORT_SYMBOL(sys_wait4); | ||