Re: [PATCH] virtio_net: Fix memory leak in virtnet_rx_mod_work

2024-05-10 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net-next.git (main) by Jakub Kicinski : On Thu, 9 May 2024 13:36:34 -0500 you wrote: > The pointer delcaration was missing the __free(kfree). > > Fixes: ff7c7d9f5261 ("virtio_net: Remove command data from control_buf") > Reported-by: Jens Axboe > Closes:

Re: [PATCH] virtio_net: Fix memory leak in virtnet_rx_mod_work

2024-05-10 Thread Michael S. Tsirkin
On Thu, May 09, 2024 at 01:36:34PM -0500, Daniel Jurgens wrote: > The pointer delcaration was missing the __free(kfree). > > Fixes: ff7c7d9f5261 ("virtio_net: Remove command data from control_buf") > Reported-by: Jens Axboe > Closes: > https://lore.kernel.org/netdev/0674ca1b-020f-4f93-94d0-10496

Re: [PATCH] virtio_net: Fix memory leak in virtnet_rx_mod_work

2024-05-09 Thread Xuan Zhuo
On Thu, 9 May 2024 13:36:34 -0500, Daniel Jurgens wrote: > The pointer delcaration was missing the __free(kfree). > > Fixes: ff7c7d9f5261 ("virtio_net: Remove command data from control_buf") > Reported-by: Jens Axboe > Closes: > https://lore.kernel.org/netdev/0674ca1b-020f-4f93-94d0-104964566...

Re: [PATCH] virtio_net: Fix memory leak in virtnet_rx_mod_work

2024-05-09 Thread Jens Axboe
On 5/9/24 12:36 PM, Daniel Jurgens wrote: > The pointer delcaration was missing the __free(kfree). Works for me: Tested-by: Jens Axboe -- Jens Axboe

[PATCH] virtio_net: Fix memory leak in virtnet_rx_mod_work

2024-05-09 Thread Daniel Jurgens
The pointer delcaration was missing the __free(kfree). Fixes: ff7c7d9f5261 ("virtio_net: Remove command data from control_buf") Reported-by: Jens Axboe Closes: https://lore.kernel.org/netdev/0674ca1b-020f-4f93-94d0-104964566...@kernel.dk/ Signed-off-by: Daniel Jurgens --- drivers/net/virtio_ne