diff options
author | bz <bz@FreeBSD.org> | 2012-05-24 22:00:48 +0000 |
---|---|---|
committer | bz <bz@FreeBSD.org> | 2012-05-24 22:00:48 +0000 |
commit | cd8b136e121366d5f4d412d9d373efb68a521f1c (patch) | |
tree | d415a9765cf96fda52f455d1ba966e7d88fb9ccd /sys/mips | |
parent | 9956833e7b6292316c59165bb0e74773f69c270c (diff) | |
download | FreeBSD-src-cd8b136e121366d5f4d412d9d373efb68a521f1c.zip FreeBSD-src-cd8b136e121366d5f4d412d9d373efb68a521f1c.tar.gz |
MFp4 bz_ipv6_fast:
in_cksum.h required ip.h to be included for struct ip. To be
able to use some general checksum functions like in_addword()
in a non-IPv4 context, limit the (also exported to user space)
IPv4 specific functions to the times, when the ip.h header is
present and IPVERSION is defined (to 4).
We should consider more general checksum (updating) functions
to also allow easier incremental checksum updates in the L3/4
stack and firewalls, as well as ponder further requirements by
certain NIC drivers needing slightly different pseudo values
in offloading cases. Thinking in terms of a better "library".
Sponsored by: The FreeBSD Foundation
Sponsored by: iXsystems
Reviewed by: gnn (as part of the whole)
MFC After: 3 days
Diffstat (limited to 'sys/mips')
-rw-r--r-- | sys/mips/include/in_cksum.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/mips/include/in_cksum.h b/sys/mips/include/in_cksum.h index 37d88e2..633efa1 100644 --- a/sys/mips/include/in_cksum.h +++ b/sys/mips/include/in_cksum.h @@ -40,6 +40,7 @@ #define in_cksum(m, len) in_cksum_skip(m, len, 0) +#if defined(IPVERSION) && (IPVERSION == 4) /* * It it useful to have an Internet checksum routine which is inlineable * and optimized specifically for the task of computing IP header checksums @@ -66,9 +67,12 @@ in_cksum_update(struct ip *ip) } while(0) #endif +#endif #ifdef _KERNEL +#if defined(IPVERSION) && (IPVERSION == 4) u_int in_cksum_hdr(const struct ip *ip); +#endif u_short in_addword(u_short sum, u_short b); u_short in_pseudo(u_int sum, u_int b, u_int c); u_short in_cksum_skip(struct mbuf *m, int len, int skip); |