Commit 427c940558560bff2583d07fc119a21094675982

Authored by John Wang
Committed by Jakub Kicinski
1 parent 826f328e2b

net/ncsi: Use real net-device for response handler

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>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -1120,7 +1120,7 @@
1120 1120 int payload, i, ret;
1121 1121  
1122 1122 /* Find the NCSI device */
1123   - nd = ncsi_find_dev(dev);
  1123 + nd = ncsi_find_dev(orig_dev);
1124 1124 ndp = nd ? TO_NCSI_DEV_PRIV(nd) : NULL;
1125 1125 if (!ndp)
1126 1126 return -ENODEV;