Re: [PATCH V3 1/2] bonding support for IPv6 transmit hashing
From: David Miller <davem@davemloft.net>
Date: 2012-06-30 08:05:19
From: David Miller <davem@davemloft.net>
Date: 2012-06-30 08:05:19
If you're going to post multiple patches, give them unique subject line texts describing what each change does uniquely. Do not use identical subject lines ever, that is very unhelpful for the people reading your changes. From: John <redacted> Date: Fri, 29 Jun 2012 23:17:11 -0700
+ skb_network_header_len(skb) >= sizeof(struct ipv6hdr)) {
+ ipv6h = ipv6_hdr(skb);
+ v6hash =
+ (ipv6h->saddr.s6_addr32[1] ^ ipv6h->daddr.s6_addr32[1]) ^
+ (ipv6h->saddr.s6_addr32[2] ^ ipv6h->daddr.s6_addr32[2]) ^
+ (ipv6h->saddr.s6_addr32[3] ^ ipv6h->daddr.s6_addr32[3]);
+ v6hash = (v6hash >> 16) ^ (v6hash >> 8) ^ v6hash;
+ return (v6hash ^ data->h_dest[5] ^ data->h_source[5]) % count;Either you formatted this terribly, or your email client corrupted your patches.