diff options
| author | John Wang <wangzhiqiang.bj@bytedance.com> | 2020-12-23 13:55:23 +0800 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-01-12 20:09:07 +0100 |
| commit | 4de4c3f4b109c35a0a1637b63d593718fa693a0d (patch) | |
| tree | 66d0372d0180bdd0832e560a1c3adc0492de2699 /net | |
| parent | f6870be9f527d76af5ec4968998606eb1de5c86d (diff) | |
| download | linux-4de4c3f4b109c35a0a1637b63d593718fa693a0d.tar.gz linux-4de4c3f4b109c35a0a1637b63d593718fa693a0d.tar.bz2 linux-4de4c3f4b109c35a0a1637b63d593718fa693a0d.zip | |
net/ncsi: Use real net-device for response handler
[ Upstream commit 427c940558560bff2583d07fc119a21094675982 ]
When aggregating ncsi interfaces and dedicated interfaces to bond
interfaces, the ncsi response handler will use the wrong net device to
find ncsi_dev, so that the ncsi interface will not work properly.
Here, we use the original net device to fix it.
Fixes: 138635cc27c9 ("net/ncsi: NCSI response packet handler")
Signed-off-by: John Wang <wangzhiqiang.bj@bytedance.com>
Link: https://lore.kernel.org/r/20201223055523.2069-1-wangzhiqiang.bj@bytedance.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'net')
| -rw-r--r-- | net/ncsi/ncsi-rsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ncsi/ncsi-rsp.c b/net/ncsi/ncsi-rsp.c index 927dad4759d1..bbedcf48d71c 100644 --- a/net/ncsi/ncsi-rsp.c +++ b/net/ncsi/ncsi-rsp.c @@ -983,7 +983,7 @@ int ncsi_rcv_rsp(struct sk_buff *skb, struct net_device *dev, int payload, i, ret; /* Find the NCSI device */ - nd = ncsi_find_dev(dev); + nd = ncsi_find_dev(orig_dev); ndp = nd ? TO_NCSI_DEV_PRIV(nd) : NULL; if (!ndp) return -ENODEV; |
