Release 4.14 arch/x86/um/asm/checksum_64.h
/*
* Licensed under the GPL
*/
#ifndef __UM_SYSDEP_CHECKSUM_H
#define __UM_SYSDEP_CHECKSUM_H
static inline unsigned add32_with_carry(unsigned a, unsigned b)
{
asm("addl %2,%0\n\t"
"adcl $0,%0"
: "=r" (a)
: "0" (a), "r" (b));
return a;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Jeff Dike | 17 | 100.00% | 1 | 100.00% |
Total | 17 | 100.00% | 1 | 100.00% |
extern __sum16 ip_compute_csum(const void *buff, int len);
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Jeff Dike | 36 | 92.31% | 2 | 66.67% |
Al Viro | 3 | 7.69% | 1 | 33.33% |
Total | 39 | 100.00% | 3 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.