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/mips/kernel/mips_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/mips/kernel/mips_ksyms.c')
-rw-r--r-- | arch/mips/kernel/mips_ksyms.c | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/arch/mips/kernel/mips_ksyms.c b/arch/mips/kernel/mips_ksyms.c new file mode 100644 index 000000000000..eed29fc9dc82 --- /dev/null +++ b/arch/mips/kernel/mips_ksyms.c | |||
@@ -0,0 +1,67 @@ | |||
1 | /* | ||
2 | * Export MIPS-specific functions needed for loadable modules. | ||
3 | * | ||
4 | * This file is subject to the terms and conditions of the GNU General Public | ||
5 | * License. See the file "COPYING" in the main directory of this archive | ||
6 | * for more details. | ||
7 | * | ||
8 | * Copyright (C) 1996, 97, 98, 99, 2000, 01, 03, 04, 05 by Ralf Baechle | ||
9 | * Copyright (C) 1999, 2000, 01 Silicon Graphics, Inc. | ||
10 | */ | ||
11 | #include <linux/config.h> | ||
12 | #include <linux/interrupt.h> | ||
13 | #include <linux/module.h> | ||
14 | #include <asm/checksum.h> | ||
15 | #include <asm/pgtable.h> | ||
16 | #include <asm/uaccess.h> | ||
17 | |||
18 | extern void *__bzero(void *__s, size_t __count); | ||
19 | extern long __strncpy_from_user_nocheck_asm(char *__to, | ||
20 | const char *__from, long __len); | ||
21 | extern long __strncpy_from_user_asm(char *__to, const char *__from, | ||
22 | long __len); | ||
23 | extern long __strlen_user_nocheck_asm(const char *s); | ||
24 | extern long __strlen_user_asm(const char *s); | ||
25 | extern long __strnlen_user_nocheck_asm(const char *s); | ||
26 | extern long __strnlen_user_asm(const char *s); | ||
27 | |||
28 | /* | ||
29 | * String functions | ||
30 | */ | ||
31 | EXPORT_SYMBOL(memchr); | ||
32 | EXPORT_SYMBOL(memcmp); | ||
33 | EXPORT_SYMBOL(memset); | ||
34 | EXPORT_SYMBOL(memcpy); | ||
35 | EXPORT_SYMBOL(memmove); | ||
36 | EXPORT_SYMBOL(strcat); | ||
37 | EXPORT_SYMBOL(strchr); | ||
38 | #ifdef CONFIG_MIPS64 | ||
39 | EXPORT_SYMBOL(strncmp); | ||
40 | #endif | ||
41 | EXPORT_SYMBOL(strlen); | ||
42 | EXPORT_SYMBOL(strpbrk); | ||
43 | EXPORT_SYMBOL(strncat); | ||
44 | EXPORT_SYMBOL(strnlen); | ||
45 | EXPORT_SYMBOL(strrchr); | ||
46 | EXPORT_SYMBOL(strstr); | ||
47 | |||
48 | EXPORT_SYMBOL(kernel_thread); | ||
49 | |||
50 | /* | ||
51 | * Userspace access stuff. | ||
52 | */ | ||
53 | EXPORT_SYMBOL(__copy_user); | ||
54 | EXPORT_SYMBOL(__bzero); | ||
55 | EXPORT_SYMBOL(__strncpy_from_user_nocheck_asm); | ||
56 | EXPORT_SYMBOL(__strncpy_from_user_asm); | ||
57 | EXPORT_SYMBOL(__strlen_user_nocheck_asm); | ||
58 | EXPORT_SYMBOL(__strlen_user_asm); | ||
59 | EXPORT_SYMBOL(__strnlen_user_nocheck_asm); | ||
60 | EXPORT_SYMBOL(__strnlen_user_asm); | ||
61 | |||
62 | EXPORT_SYMBOL(csum_partial); | ||
63 | |||
64 | EXPORT_SYMBOL(invalid_pte_table); | ||
65 | #ifdef CONFIG_GENERIC_IRQ_PROBE | ||
66 | EXPORT_SYMBOL(probe_irq_mask); | ||
67 | #endif | ||