2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * Copyright (C) 1996, 1999 by Ralf Baechle
7 * Copyright (C) 2011 MIPS Technologies, Inc.
9 #include <linux/errno.h>
11 #include <asm/asm-offsets.h>
12 #include <asm/regdef.h>
14 #define EX(insn,reg,addr,handler) \
16 .section __ex_table,"a"; \
21 * Returns: -EFAULT if exception before terminator, N if the entire
22 * buffer filled, else strlen.
26 * Ugly special case have to check: we might get passed a user space
27 * pointer which wraps into the kernel space. We don't deal with that. If
28 * it happens at most some bytes of the exceptions handlers will be copied.
31 LEAF(__strncpy_from_user_asm)
32 LONG_L v0, TI_ADDR_LIMIT($28) # pointer ok?
36 FEXPORT(__strncpy_from_user_nocheck_asm)
40 1: EX(lbu, v0, (v1), .Lfault)
48 2: PTR_ADDU v0, a1, t0
54 END(__strncpy_from_user_asm)
59 .section __ex_table,"a"