]> git.baikalelectronics.ru Git - kernel.git/commit
virtio-net: Keep stop() to follow mirror sequence of open()
authorParav Pandit <parav@nvidia.com>
Thu, 2 Feb 2023 16:35:16 +0000 (18:35 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 22 Feb 2023 11:50:25 +0000 (12:50 +0100)
commite588c784af4c93253b1f1c1cb6d9e8fa582f3fd2
tree676df95c56f0ef21fe04c304467ad282b32e63ff
parente2e4d8253efa5a27fb0c60c0aaa4dd9ba3c5c976
virtio-net: Keep stop() to follow mirror sequence of open()

[ Upstream commit 63b114042d8a9c02d9939889177c36dbdb17a588 ]

Cited commit in fixes tag frees rxq xdp info while RQ NAPI is
still enabled and packet processing may be ongoing.

Follow the mirror sequence of open() in the stop() callback.
This ensures that when rxq info is unregistered, no rx
packet processing is ongoing.

Fixes: 3a0a20296560 ("virtio_net: setup xdp_rxq_info")
Acked-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Jiri Pirko <jiri@nvidia.com>
Signed-off-by: Parav Pandit <parav@nvidia.com>
Link: https://lore.kernel.org/r/20230202163516.12559-1-parav@nvidia.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/net/virtio_net.c