Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* csum_copy_to_user.S: Checksum+copy to userspace. |
| 3 | * |
| 4 | * Copyright (C) 2005 David S. Miller (davem@davemloft.net) |
| 5 | */ |
| 6 | |
| 7 | #define EX_ST(x) \ |
| 8 | 98: x; \ |
David S. Miller | 6373fff | 2009-05-29 16:12:02 -0700 | [diff] [blame] | 9 | .section .fixup,"ax"; \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | .align 4; \ |
| 11 | 99: retl; \ |
| 12 | mov -1, %o0; \ |
David S. Miller | 4d000d5 | 2006-03-04 23:23:56 -0800 | [diff] [blame] | 13 | .section __ex_table,"a";\ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | .align 4; \ |
| 15 | .word 98b, 99b; \ |
| 16 | .text; \ |
| 17 | .align 4; |
| 18 | |
| 19 | #define FUNC_NAME __csum_partial_copy_to_user |
| 20 | #define STORE(type,src,addr) type##a src, [addr] %asi |
| 21 | |
| 22 | #include "csum_copy.S" |