blob: afd01acc587c3f9462d93d54db459b5d3395f24c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* csum_copy_to_user.S: Checksum+copy to userspace.
2 *
3 * Copyright (C) 2005 David S. Miller (davem@davemloft.net)
4 */
5
6#define EX_ST(x) \
798: x; \
David S. Miller6373fff2009-05-29 16:12:02 -07008 .section .fixup,"ax"; \
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 .align 4; \
1099: retl; \
11 mov -1, %o0; \
David S. Miller4d000d52006-03-04 23:23:56 -080012 .section __ex_table,"a";\
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 .align 4; \
14 .word 98b, 99b; \
15 .text; \
16 .align 4;
17
18#define FUNC_NAME __csum_partial_copy_to_user
19#define STORE(type,src,addr) type##a src, [addr] %asi
20
21#include "csum_copy.S"