netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] bonding: Doesn't support IPv6
@ 2011-10-29  1:08 John
  0 siblings, 0 replies; only message in thread
From: John @ 2011-10-29  1:08 UTC (permalink / raw)
  To: netdev; +Cc: andy

Currently the "bonding" driver does not support load balancing outgoing 
traffic in LACP mode for IPv6 traffic. IPv4 (and TCP or UDP over IPv4) 
are currently supported; this patch adds transmit hashing for IPv6 (and 
TCP or UDP over IPv6), bringing IPv6 up to par with IPv4 support in the 
bonding driver.

The algorithm chosen (xor'ing the bottom three quads and then xor'ing 
that down into the bottom byte) was chosen after testing almost 400,000 
unique IPv6 addresses harvested from server logs. This algorithm had the 
most even distribution for both big- and little-endian architectures 
while still using few instructions.

Fragmented IPv6 packets are handled the same way as fragmented IPv4 
packets, ie, they are not balanced based on layer 4 information. 
Additionally, IPv6 packets with intermediate headers are not balanced 
based on layer 4 information. In practice these intermediate headers are 
rare and this should not cause any problems, the alternative (a 
packet-parsing loop and look-up table) seemed slow and complicated for 
little gain.

This is an update to a prior patch I submitted. This version includes 
bounds checking not present in the original driver or my prior patch. 
Included with the patch is an update to the bonding documentation.

Patch has been tested and performs as expected.

John

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2011-10-29  1:16 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-29  1:08 [PATCH 0/2] bonding: Doesn't support IPv6 John

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).