]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/mips/kernel/mips_ksyms.c
MIPS: Whitespace cleanup.
[mirror_ubuntu-bionic-kernel.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 *
c0226306 8 * Copyright (C) 1996, 97, 98, 99, 2000, 01, 03, 04, 05, 12 by Ralf Baechle
1da177e4
LT
9 * Copyright (C) 1999, 2000, 01 Silicon Graphics, Inc.
10 */
1da177e4 11#include <linux/interrupt.h>
73bc256d 12#include <linux/export.h>
1da177e4 13#include <asm/checksum.h>
970d032f 14#include <linux/mm.h>
1da177e4 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,
70342287 20 const char *__from, long __len);
1da177e4 21extern long __strncpy_from_user_asm(char *__to, const char *__from,
70342287 22 long __len);
1da177e4
LT
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 34
c0226306
SH
35/*
36 * Functions that operate on entire pages. Mostly used by memory management.
37 */
38EXPORT_SYMBOL(clear_page);
39EXPORT_SYMBOL(copy_page);
40
1da177e4
LT
41/*
42 * Userspace access stuff.
43 */
44EXPORT_SYMBOL(__copy_user);
d0c91ae2 45EXPORT_SYMBOL(__copy_user_inatomic);
1da177e4
LT
46EXPORT_SYMBOL(__bzero);
47EXPORT_SYMBOL(__strncpy_from_user_nocheck_asm);
48EXPORT_SYMBOL(__strncpy_from_user_asm);
49EXPORT_SYMBOL(__strlen_user_nocheck_asm);
50EXPORT_SYMBOL(__strlen_user_asm);
51EXPORT_SYMBOL(__strnlen_user_nocheck_asm);
52EXPORT_SYMBOL(__strnlen_user_asm);
53
54EXPORT_SYMBOL(csum_partial);
f860c90b
AN
55EXPORT_SYMBOL(csum_partial_copy_nocheck);
56EXPORT_SYMBOL(__csum_partial_copy_user);
1da177e4
LT
57
58EXPORT_SYMBOL(invalid_pte_table);
d2bb0762
WZ
59#ifdef CONFIG_FUNCTION_TRACER
60/* _mcount is defined in arch/mips/kernel/mcount.S */
61EXPORT_SYMBOL(_mcount);
62#endif