x86: Move call to print_modules() out of show_regs()
[deliverable/linux.git] / arch / mips / kernel / mips_ksyms.c
CommitLineData
1da177e4
LT
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 */
1da177e4 11#include <linux/interrupt.h>
73bc256d 12#include <linux/export.h>
1da177e4
LT
13#include <asm/checksum.h>
14#include <asm/pgtable.h>
15#include <asm/uaccess.h>
d2bb0762 16#include <asm/ftrace.h>
1da177e4
LT
17
18extern void *__bzero(void *__s, size_t __count);
19extern long __strncpy_from_user_nocheck_asm(char *__to,
20 const char *__from, long __len);
21extern long __strncpy_from_user_asm(char *__to, const char *__from,
22 long __len);
23extern long __strlen_user_nocheck_asm(const char *s);
24extern long __strlen_user_asm(const char *s);
25extern long __strnlen_user_nocheck_asm(const char *s);
26extern long __strnlen_user_asm(const char *s);
27
28/*
29 * String functions
30 */
1da177e4
LT
31EXPORT_SYMBOL(memset);
32EXPORT_SYMBOL(memcpy);
33EXPORT_SYMBOL(memmove);
1da177e4
LT
34
35EXPORT_SYMBOL(kernel_thread);
36
37/*
38 * Userspace access stuff.
39 */
40EXPORT_SYMBOL(__copy_user);
d0c91ae2 41EXPORT_SYMBOL(__copy_user_inatomic);
1da177e4
LT
42EXPORT_SYMBOL(__bzero);
43EXPORT_SYMBOL(__strncpy_from_user_nocheck_asm);
44EXPORT_SYMBOL(__strncpy_from_user_asm);
45EXPORT_SYMBOL(__strlen_user_nocheck_asm);
46EXPORT_SYMBOL(__strlen_user_asm);
47EXPORT_SYMBOL(__strnlen_user_nocheck_asm);
48EXPORT_SYMBOL(__strnlen_user_asm);
49
50EXPORT_SYMBOL(csum_partial);
f860c90b
AN
51EXPORT_SYMBOL(csum_partial_copy_nocheck);
52EXPORT_SYMBOL(__csum_partial_copy_user);
1da177e4
LT
53
54EXPORT_SYMBOL(invalid_pte_table);
d2bb0762
WZ
55#ifdef CONFIG_FUNCTION_TRACER
56/* _mcount is defined in arch/mips/kernel/mcount.S */
57EXPORT_SYMBOL(_mcount);
58#endif
This page took 0.699027 seconds and 5 git commands to generate.