netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] net: vrf: correct FRA_L3MDEV encode type
@ 2017-11-01  1:24 Jeff Barnhill
  2017-11-01  2:42 ` David Miller
  0 siblings, 1 reply; 6+ messages in thread
From: Jeff Barnhill @ 2017-11-01  1:24 UTC (permalink / raw)
  To: netdev; +Cc: Jeff Barnhill

FRA_L3MDEV is defined as U8, but is being added as a U32 attribute. On
big endian architecture, this results in the l3mdev entry not being
added to the FIB rules.

Fixes: 1aa6c4f6b8cd8 ("net: vrf: Add l3mdev rules on first device create")
---
 drivers/net/vrf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/vrf.c b/drivers/net/vrf.c
index 9b243e6f3008..7dc3bcac3506 100644
--- a/drivers/net/vrf.c
+++ b/drivers/net/vrf.c
@@ -1165,7 +1165,7 @@ static int vrf_fib_rule(const struct net_device *dev, __u8 family, bool add_it)
 	frh->family = family;
 	frh->action = FR_ACT_TO_TBL;
 
-	if (nla_put_u32(skb, FRA_L3MDEV, 1))
+	if (nla_put_u8(skb, FRA_L3MDEV, 1))
 		goto nla_put_failure;
 
 	if (nla_put_u32(skb, FRA_PRIORITY, FIB_RULE_PREF))
-- 
2.14.1

^ permalink raw reply related	[flat|nested] 6+ messages in thread
* [PATCH] net: vrf: correct FRA_L3MDEV encode type
@ 2017-11-01 14:58 Jeff Barnhill
  2017-11-01 19:30 ` David Ahern
  2017-11-02  7:22 ` David Miller
  0 siblings, 2 replies; 6+ messages in thread
From: Jeff Barnhill @ 2017-11-01 14:58 UTC (permalink / raw)
  To: netdev; +Cc: Jeff Barnhill

FRA_L3MDEV is defined as U8, but is being added as a U32 attribute. On
big endian architecture, this results in the l3mdev entry not being
added to the FIB rules.

Fixes: 1aa6c4f6b8cd8 ("net: vrf: Add l3mdev rules on first device create")
Signed-off-by: Jeff Barnhill <0xeffeff@gmail.com>
---
 drivers/net/vrf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/vrf.c b/drivers/net/vrf.c
index 9b243e6f3008..7dc3bcac3506 100644
--- a/drivers/net/vrf.c
+++ b/drivers/net/vrf.c
@@ -1165,7 +1165,7 @@ static int vrf_fib_rule(const struct net_device *dev, __u8 family, bool add_it)
 	frh->family = family;
 	frh->action = FR_ACT_TO_TBL;
 
-	if (nla_put_u32(skb, FRA_L3MDEV, 1))
+	if (nla_put_u8(skb, FRA_L3MDEV, 1))
 		goto nla_put_failure;
 
 	if (nla_put_u32(skb, FRA_PRIORITY, FIB_RULE_PREF))
-- 
2.14.1

^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2017-11-02 19:18 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-11-01  1:24 [PATCH] net: vrf: correct FRA_L3MDEV encode type Jeff Barnhill
2017-11-01  2:42 ` David Miller
  -- strict thread matches above, loose matches on Subject: below --
2017-11-01 14:58 Jeff Barnhill
2017-11-01 19:30 ` David Ahern
2017-11-02  7:22 ` David Miller
2017-11-02 19:18   ` David Ahern

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).