Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v2.6.35-rc6 21 lines 431 B view raw
1/* 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; \ 8 .section .fixup,"ax"; \ 9 .align 4; \ 1099: retl; \ 11 mov -1, %o0; \ 12 .section __ex_table,"a";\ 13 .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"