aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/net/core/gro_cells.c
diff options
context:
space:
mode:
authorJakub Kicinski <kuba@kernel.org>2022-09-27 06:27:53 -0700
committerJakub Kicinski <kuba@kernel.org>2022-09-28 18:57:14 -0700
commitb48b89f9c189d24eb5e2b4a0ac067da5a24ee86d (patch)
tree96d1bc714ff0e2edcf6d25bdf48f00c308ff7c98 /net/core/gro_cells.c
parentnet: Fix incorrect address comparison when searching for a bind2 bucket (diff)
downloadwireguard-linux-b48b89f9c189d24eb5e2b4a0ac067da5a24ee86d.tar.xz
wireguard-linux-b48b89f9c189d24eb5e2b4a0ac067da5a24ee86d.zip
net: drop the weight argument from netif_napi_add
We tell driver developers to always pass NAPI_POLL_WEIGHT as the weight to netif_napi_add(). This may be confusing to newcomers, drop the weight argument, those who really need to tweak the weight can use netif_napi_add_weight(). Acked-by: Marc Kleine-Budde <mkl@pengutronix.de> # for CAN Link: https://lore.kernel.org/r/20220927132753.750069-1-kuba@kernel.org Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'net/core/gro_cells.c')
-rw-r--r--net/core/gro_cells.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/net/core/gro_cells.c b/net/core/gro_cells.c
index 21619c70a82b..ed5ec5de47f6 100644
--- a/net/core/gro_cells.c
+++ b/net/core/gro_cells.c
@@ -81,8 +81,7 @@ int gro_cells_init(struct gro_cells *gcells, struct net_device *dev)
set_bit(NAPI_STATE_NO_BUSY_POLL, &cell->napi.state);
- netif_napi_add(dev, &cell->napi, gro_cell_poll,
- NAPI_POLL_WEIGHT);
+ netif_napi_add(dev, &cell->napi, gro_cell_poll);
napi_enable(&cell->napi);
}
return 0;