* [PATCH net] i40e: fix call of ndo_dflt_bridge_getlink()
@ 2016-09-19 16:14 Nicolas Dichtel
2016-09-23 9:12 ` Nicolas Dichtel
0 siblings, 1 reply; 4+ messages in thread
From: Nicolas Dichtel @ 2016-09-19 16:14 UTC (permalink / raw)
To: davem, jeffrey.t.kirsher
Cc: netdev, Huaibin Wang, Scott Feldman, Carolyn Wyborny,
Catherine Sullivan, Nicolas Dichtel
From: Huaibin Wang <huaibin.wang@6wind.com>
Order of arguments is wrong.
The wrong code has been introduced by commit 7d4f8d871ab1, but is compiled
only since commit 9df70b66418e.
Note that this may break netlink dumps.
Fixes: 9df70b66418e ("i40e: Remove incorrect #ifdef's")
Fixes: 7d4f8d871ab1 ("switchdev; add VLAN support for port's bridge_getlink")
CC: Scott Feldman <sfeldma@gmail.com>
CC: Carolyn Wyborny <carolyn.wyborny@intel.com>
CC: Catherine Sullivan <catherine.sullivan@intel.com>
Signed-off-by: Huaibin Wang <huaibin.wang@6wind.com>
Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>
---
drivers/net/ethernet/intel/i40e/i40e_main.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/ethernet/intel/i40e/i40e_main.c b/drivers/net/ethernet/intel/i40e/i40e_main.c
index d0b3a1bb82ca..2843f6cae97a 100644
--- a/drivers/net/ethernet/intel/i40e/i40e_main.c
+++ b/drivers/net/ethernet/intel/i40e/i40e_main.c
@@ -9012,7 +9012,7 @@ static int i40e_ndo_bridge_getlink(struct sk_buff *skb, u32 pid, u32 seq,
return 0;
return ndo_dflt_bridge_getlink(skb, pid, seq, dev, veb->bridge_mode,
- nlflags, 0, 0, filter_mask, NULL);
+ 0, 0, nlflags, filter_mask, NULL);
}
/* Hardware supports L4 tunnel length of 128B (=2^7) which includes
--
2.8.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH net] i40e: fix call of ndo_dflt_bridge_getlink()
2016-09-19 16:14 [PATCH net] i40e: fix call of ndo_dflt_bridge_getlink() Nicolas Dichtel
@ 2016-09-23 9:12 ` Nicolas Dichtel
2016-09-23 21:37 ` Jeff Kirsher
0 siblings, 1 reply; 4+ messages in thread
From: Nicolas Dichtel @ 2016-09-23 9:12 UTC (permalink / raw)
To: jeffrey.t.kirsher
Cc: davem, netdev, Huaibin Wang, Scott Feldman, Carolyn Wyborny,
Catherine Sullivan
Le 19/09/2016 à 18:14, Nicolas Dichtel a écrit :
> From: Huaibin Wang <huaibin.wang@6wind.com>
>
> Order of arguments is wrong.
> The wrong code has been introduced by commit 7d4f8d871ab1, but is compiled
> only since commit 9df70b66418e.
>
> Note that this may break netlink dumps.
>
> Fixes: 9df70b66418e ("i40e: Remove incorrect #ifdef's")
> Fixes: 7d4f8d871ab1 ("switchdev; add VLAN support for port's bridge_getlink")
> CC: Scott Feldman <sfeldma@gmail.com>
> CC: Carolyn Wyborny <carolyn.wyborny@intel.com>
> CC: Catherine Sullivan <catherine.sullivan@intel.com>
> Signed-off-by: Huaibin Wang <huaibin.wang@6wind.com>
> Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>
Hi Jeff,
any news about this patch? David has marked it "awaiting upstream" on the
patchwork, so I understand it should go to your tree.
Thank you,
Nicolas
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH net] i40e: fix call of ndo_dflt_bridge_getlink()
2016-09-23 9:12 ` Nicolas Dichtel
@ 2016-09-23 21:37 ` Jeff Kirsher
2016-09-26 7:46 ` Nicolas Dichtel
0 siblings, 1 reply; 4+ messages in thread
From: Jeff Kirsher @ 2016-09-23 21:37 UTC (permalink / raw)
To: nicolas.dichtel
Cc: davem, netdev, Huaibin Wang, Scott Feldman, Carolyn Wyborny,
Catherine Sullivan
[-- Attachment #1: Type: text/plain, Size: 1259 bytes --]
On Fri, 2016-09-23 at 11:12 +0200, Nicolas Dichtel wrote:
> Le 19/09/2016 à 18:14, Nicolas Dichtel a écrit :
> > From: Huaibin Wang <huaibin.wang@6wind.com>
> >
> > Order of arguments is wrong.
> > The wrong code has been introduced by commit 7d4f8d871ab1, but is
> compiled
> > only since commit 9df70b66418e.
> >
> > Note that this may break netlink dumps.
> >
> > Fixes: 9df70b66418e ("i40e: Remove incorrect #ifdef's")
> > Fixes: 7d4f8d871ab1 ("switchdev; add VLAN support for port's
> bridge_getlink")
> > CC: Scott Feldman <sfeldma@gmail.com>
> > CC: Carolyn Wyborny <carolyn.wyborny@intel.com>
> > CC: Catherine Sullivan <catherine.sullivan@intel.com>
> > Signed-off-by: Huaibin Wang <huaibin.wang@6wind.com>
> > Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>
> Hi Jeff,
>
> any news about this patch? David has marked it "awaiting upstream" on the
> patchwork, so I understand it should go to your tree.
Yes, it needs to go through my tree. Please send it to intel-wired-lan@li
sts.osuosl.org mailing list, that way I can track it through our patchwork
projects. Also you can trim Scott Feldman and Catherine Sullivan from the
CC list.
http://patchwork.ozlabs.org/project/intel-wired-lan/list/
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH net] i40e: fix call of ndo_dflt_bridge_getlink()
2016-09-23 21:37 ` Jeff Kirsher
@ 2016-09-26 7:46 ` Nicolas Dichtel
0 siblings, 0 replies; 4+ messages in thread
From: Nicolas Dichtel @ 2016-09-26 7:46 UTC (permalink / raw)
To: Jeff Kirsher
Cc: davem, netdev, Huaibin Wang, Scott Feldman, Carolyn Wyborny,
Catherine Sullivan
Le 23/09/2016 à 23:37, Jeff Kirsher a écrit :
[snip]
> Yes, it needs to go through my tree. Please send it to intel-wired-lan@li
> sts.osuosl.org mailing list, that way I can track it through our patchwork
Ok, will do. I didn't send it to this list the first time because this list is
marked as "moderated for non-subscribers" in the MAINTAINERS file.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-09-26 7:46 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-19 16:14 [PATCH net] i40e: fix call of ndo_dflt_bridge_getlink() Nicolas Dichtel
2016-09-23 9:12 ` Nicolas Dichtel
2016-09-23 21:37 ` Jeff Kirsher
2016-09-26 7:46 ` Nicolas Dichtel
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.