Symbol: ip_compute_csum
arch/alpha/include/asm/checksum.h
56
extern __sum16 ip_compute_csum(const void *buff, int len);
arch/alpha/lib/checksum.c
186
EXPORT_SYMBOL(ip_compute_csum);
arch/nios2/include/asm/checksum.h
16
extern __sum16 ip_compute_csum(const void *buff, int len);
arch/x86/include/asm/checksum_64.h
147
extern __sum16 ip_compute_csum(const void *buff, int len);
arch/x86/lib/csum-partial_64.c
123
EXPORT_SYMBOL(ip_compute_csum);
arch/x86/um/asm/checksum_64.h
17
extern __sum16 ip_compute_csum(const void *buff, int len);
block/t10-pi.c
28
return (__force __be16)ip_compute_csum(data, len);
drivers/media/pci/bt8xx/bttv-cards.c
3944
u16 checksum = (__force u16)ip_compute_csum(ee + i, 16);
drivers/net/amt.c
572
*csum = ip_compute_csum(csum_start, sizeof(*ihv3));
drivers/scsi/lpfc/lpfc_scsi.c
2679
ret = ip_compute_csum(data, count);
drivers/scsi/scsi_debug.c
4339
csum = (__force __be16)ip_compute_csum(buf, len);
include/asm-generic/checksum.h
63
extern __sum16 ip_compute_csum(const void *buff, int len);
lib/checksum.c
137
EXPORT_SYMBOL(ip_compute_csum);
net/bridge/br_multicast.c
1062
*csum = ip_compute_csum(csum_start, igmp_hdr_size);
net/ipv4/icmp.c
780
ext_hdr->checksum = ip_compute_csum(ext_hdr, ext_len);
net/ipv4/igmp.c
428
pig->csum = ip_compute_csum(igmp_hdr(skb), igmplen);
net/ipv4/igmp.c
797
ih->csum = ip_compute_csum((void *)ih, sizeof(struct igmphdr));
net/ipv4/ipmr.c
2386
(ip_compute_csum((void *)pim, sizeof(*pim)) != 0 &&
net/ipv6/icmp.c
622
ext_hdr->checksum = ip_compute_csum(ext_hdr, ext_len);