]> git.baikalelectronics.ru Git - kernel.git/commit
gro_cells: reduce number of synchronize_net() calls
authorEric Dumazet <edumazet@google.com>
Tue, 24 Nov 2020 20:38:22 +0000 (12:38 -0800)
committerJakub Kicinski <kuba@kernel.org>
Wed, 25 Nov 2020 19:28:12 +0000 (11:28 -0800)
commit5cc316bf528559c08af818219fbe78b8ffe745af
tree74cded007848826335fa87abc2f7a749d3e469d2
parent2cd5aaf5e26bd6bc88e73c2121355630d87e2190
gro_cells: reduce number of synchronize_net() calls

After cited commit, gro_cells_destroy() became damn slow
on hosts with a lot of cores.

This is because we have one additional synchronize_net() per cpu as
stated in the changelog.

gro_cells_init() is setting NAPI_STATE_NO_BUSY_POLL, and this was enough
to not have one synchronize_net() call per netif_napi_del()

We can factorize all the synchronize_net() to a single one,
right before freeing per-cpu memory.

Fixes: da4428e97be8 ("net: remove napi_hash_del() from driver-facing API")
Signed-off-by: Eric Dumazet <edumazet@google.com>
Link: https://lore.kernel.org/r/20201124203822.1360107-1-eric.dumazet@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
net/core/gro_cells.c