diff mbox series

[net,v3] bareudp: Fixed multiproto mode configuration

Message ID 1592413223-9098-1-git-send-email-martinvarghesenokia@gmail.com
State Accepted
Delegated to: David Miller
Headers show
Series [net,v3] bareudp: Fixed multiproto mode configuration | expand

Commit Message

Martin Varghese June 17, 2020, 5 p.m. UTC
From: Martin <martin.varghese@nokia.com>

Code to handle multiproto configuration is missing.

Fixes: 4b5f67232d95 ("net: Special handling for IP & MPLS")
Signed-off-by: Martin <martin.varghese@nokia.com>
---
Changes in v2:
     - Initialization of conf structure is removed as that change is included
       in another patch.

Changes in v3:
     - Fixes tag added.

 drivers/net/bareudp.c | 3 +++
 1 file changed, 3 insertions(+)

Comments

David Miller June 19, 2020, 3:32 a.m. UTC | #1
From: Martin Varghese <martinvarghesenokia@gmail.com>
Date: Wed, 17 Jun 2020 22:30:23 +0530

> From: Martin <martin.varghese@nokia.com>
> 
> Code to handle multiproto configuration is missing.
> 
> Fixes: 4b5f67232d95 ("net: Special handling for IP & MPLS")
> Signed-off-by: Martin <martin.varghese@nokia.com>

Applied and queued up for v5.7 -stable, thanks.
diff mbox series

Patch

diff --git a/drivers/net/bareudp.c b/drivers/net/bareudp.c
index 5d3c691..3dd46cd 100644
--- a/drivers/net/bareudp.c
+++ b/drivers/net/bareudp.c
@@ -572,6 +572,9 @@  static int bareudp2info(struct nlattr *data[], struct bareudp_conf *conf,
 	if (data[IFLA_BAREUDP_SRCPORT_MIN])
 		conf->sport_min =  nla_get_u16(data[IFLA_BAREUDP_SRCPORT_MIN]);
 
+	if (data[IFLA_BAREUDP_MULTIPROTO_MODE])
+		conf->multi_proto_mode = true;
+
 	return 0;
 }