diff mbox series

[iproute2-next] ip/bond: add arp_validate filter support

Message ID 20210816074905.297294-1-liuhangbin@gmail.com (mailing list archive)
State Accepted
Delegated to: Stephen Hemminger
Headers show
Series [iproute2-next] ip/bond: add arp_validate filter support | expand

Checks

Context Check Description
netdev/tree_selection success Not a local patch

Commit Message

Hangbin Liu Aug. 16, 2021, 7:49 a.m. UTC
Add arp_validate filter support based on kernel commit 896149ff1b2c
("bonding: extend arp_validate to be able to receive unvalidated arp-only traffic")

Signed-off-by: Hangbin Liu <liuhangbin@gmail.com>
---
 ip/iplink_bond.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

Comments

Stephen Hemminger Aug. 17, 2021, 1:26 a.m. UTC | #1
On Mon, 16 Aug 2021 15:49:05 +0800
Hangbin Liu <liuhangbin@gmail.com> wrote:

> Add arp_validate filter support based on kernel commit 896149ff1b2c
> ("bonding: extend arp_validate to be able to receive unvalidated arp-only traffic")
> 
> Signed-off-by: Hangbin Liu <liuhangbin@gmail.com

Since this has been in since 2014, it can skip going to iproute2-next
Hangbin Liu Aug. 17, 2021, 2:24 a.m. UTC | #2
On Mon, Aug 16, 2021 at 06:26:20PM -0700, Stephen Hemminger wrote:
> On Mon, 16 Aug 2021 15:49:05 +0800
> Hangbin Liu <liuhangbin@gmail.com> wrote:
> 
> > Add arp_validate filter support based on kernel commit 896149ff1b2c
> > ("bonding: extend arp_validate to be able to receive unvalidated arp-only traffic")
> > 
> > Signed-off-by: Hangbin Liu <liuhangbin@gmail.com
> 
> Since this has been in since 2014, it can skip going to iproute2-next

Fine with me. I thought all new features need to be submitted to -next branch
first.

Thanks
Hangbin
diff mbox series

Patch

diff --git a/ip/iplink_bond.c b/ip/iplink_bond.c
index b01f69a5..59c9e36d 100644
--- a/ip/iplink_bond.c
+++ b/ip/iplink_bond.c
@@ -41,6 +41,9 @@  static const char *arp_validate_tbl[] = {
 	"active",
 	"backup",
 	"all",
+	"filter",
+	"filter_active",
+	"filter_backup",
 	NULL,
 };
 
@@ -152,7 +155,7 @@  static void print_explain(FILE *f)
 		"                [ ad_actor_system LLADDR ]\n"
 		"\n"
 		"BONDMODE := balance-rr|active-backup|balance-xor|broadcast|802.3ad|balance-tlb|balance-alb\n"
-		"ARP_VALIDATE := none|active|backup|all\n"
+		"ARP_VALIDATE := none|active|backup|all|filter|filter_active|filter_backup\n"
 		"ARP_ALL_TARGETS := any|all\n"
 		"PRIMARY_RESELECT := always|better|failure\n"
 		"FAIL_OVER_MAC := none|active|follow\n"