IPoIB: lower NAPI weight
Since commit 82dc3c63c6
("net: introduce NAPI_POLL_WEIGHT")
netif_napi_add() produces an error message if a NAPI poll weight
greater than 64 is requested.
Use the standard NAPI weight.
Signed-off-by: Michal Schmidt <mschmidt@redhat.com>
Signed-off-by: Roland Dreier <roland@purestorage.com>
This commit is contained in:
parent
94232d9ce8
commit
7f1a38671c
|
@ -1350,7 +1350,7 @@ void ipoib_setup(struct net_device *dev)
|
|||
|
||||
ipoib_set_ethtool_ops(dev);
|
||||
|
||||
netif_napi_add(dev, &priv->napi, ipoib_poll, 100);
|
||||
netif_napi_add(dev, &priv->napi, ipoib_poll, NAPI_POLL_WEIGHT);
|
||||
|
||||
dev->watchdog_timeo = HZ;
|
||||
|
||||
|
|
Loading…
Reference in New Issue