[PATCH v3 0/4] net:bonding:Add support for IPV6 RLB to balance-alb mode

Sun Shouxin posted 4 patches 4 years, 3 months ago
There is a newer version of this series
drivers/net/bonding/bond_3ad.c     |   2 +-
drivers/net/bonding/bond_alb.c     | 592 ++++++++++++++++++++++++++++-
drivers/net/bonding/bond_debugfs.c |  14 +
drivers/net/bonding/bond_main.c    |   6 +-
drivers/net/usb/cdc_mbim.c         |   2 +-
include/net/bond_3ad.h             |   2 +-
include/net/bond_alb.h             |   7 +
include/net/bonding.h              |   6 +-
include/net/ipv6_stubs.h           |   3 +-
include/net/ndisc.h                |   9 +-
net/ipv6/addrconf.c                |   4 +-
net/ipv6/ndisc.c                   |  64 +++-
12 files changed, 675 insertions(+), 36 deletions(-)
[PATCH v3 0/4] net:bonding:Add support for IPV6 RLB to balance-alb mode
Posted by Sun Shouxin 4 years, 3 months ago
This patch is implementing IPV6 RLB for balance-alb mode.

Sun Shouxin (4):
  net:ipv6:Refactor ndisc_send_na to support sending na by slave
    directly
  net:ipv6:Export inet6_ifa_finish_destroy and ipv6_get_ifaddr
  net:bonding:Add support for IPV6 RLB to balance-alb mode
  net: usb:Refactor ndisc_send_na

 drivers/net/bonding/bond_3ad.c     |   2 +-
 drivers/net/bonding/bond_alb.c     | 592 ++++++++++++++++++++++++++++-
 drivers/net/bonding/bond_debugfs.c |  14 +
 drivers/net/bonding/bond_main.c    |   6 +-
 drivers/net/usb/cdc_mbim.c         |   2 +-
 include/net/bond_3ad.h             |   2 +-
 include/net/bond_alb.h             |   7 +
 include/net/bonding.h              |   6 +-
 include/net/ipv6_stubs.h           |   3 +-
 include/net/ndisc.h                |   9 +-
 net/ipv6/addrconf.c                |   4 +-
 net/ipv6/ndisc.c                   |  64 +++-
 12 files changed, 675 insertions(+), 36 deletions(-)


base-commit: c84d86a0295c24487db5b7db1a61d9c0eddfbb66
-- 
2.27.0
Re: [PATCH v3 0/4] net:bonding:Add support for IPV6 RLB to balance-alb mode
Posted by Jakub Kicinski 4 years, 3 months ago
On Wed, 16 Mar 2022 04:49:54 -0400 Sun Shouxin wrote:
> This patch is implementing IPV6 RLB for balance-alb mode.

Patches 1, 2 and 3 do no build individually. Please build test each
patch to avoid breaking bisection.
Re: [PATCH v3 0/4] net:bonding:Add support for IPV6 RLB to balance-alb mode
Posted by 孙守鑫 4 years, 3 months ago
在 2022/3/17 4:05, Jakub Kicinski 写道:
> On Wed, 16 Mar 2022 04:49:54 -0400 Sun Shouxin wrote:
>> This patch is implementing IPV6 RLB for balance-alb mode.
> Patches 1, 2 and 3 do no build individually. Please build test each
> patch to avoid breaking bisection.


Sorry for mess up, I initially aim to submit patch belonging to seperate 
component by seperate patch,
  but it doesn't look like sense.
  I'll submit all code at a whole patch soon if no obiection, thanks 
your comments for kernel newbee.