X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fcsum.c;h=fb32a530dfce8d9935b78cb24906dfc7df2ce2c8;hb=e892d5ffb5749c0534fecd903e3e6a76819f1346;hp=98a83de2eafa56e96f17cd525579dd89fa3505f7;hpb=1e3f34c7693bcabae8e443ac1b246680ef9b60e2;p=sliver-openvswitch.git diff --git a/lib/csum.c b/lib/csum.c index 98a83de2e..fb32a530d 100644 --- a/lib/csum.c +++ b/lib/csum.c @@ -112,6 +112,21 @@ recalc_csum32(ovs_be16 old_csum, ovs_be32 old_u32, ovs_be32 new_u32) old_u32 >> 16, new_u32 >> 16); } +/* Returns the new checksum for a packet in which the checksum field previously + * contained 'old_csum' and in which a field that contained 'old_u32[4]' was + * changed to contain 'new_u32[4]'. */ +ovs_be16 +recalc_csum128(ovs_be16 old_csum, ovs_be32 old_u32[4], + const ovs_be32 new_u32[4]) +{ + ovs_be16 new_csum = old_csum; + int i; + + for (i = 0; i < 4; ++i) { + new_csum = recalc_csum32(new_csum, old_u32[i], new_u32[i]); + } + return new_csum; +} #else /* __CHECKER__ */ /* Making sparse happy with these functions also makes them unreadable, so * don't bother to show it their implementations. */