On 06.11.2024 20:51, Michal Luczaj wrote:
> Add a missing kfree_skb() to prevent memory leaks.
>
> Fixes: 581512a6dc93 ("vsock/virtio: MSG_ZEROCOPY flag support")
> Signed-off-by: Michal Luczaj <[email protected]>
> ---
> net/vmw_vsock/virtio_transport_common.c | 1 +
> 1 file changed, 1 insertion(+)
Acked-by: Arseniy Krasnov <[email protected]>
>
> diff --git a/net/vmw_vsock/virtio_transport_common.c
> b/net/vmw_vsock/virtio_transport_common.c
> index
> cd075f608d4f6f48f894543e5e9c966d3e5f22df..e2e6a30b759bdc6371bb0d63ee2e77c0ba148fd2
> 100644
> --- a/net/vmw_vsock/virtio_transport_common.c
> +++ b/net/vmw_vsock/virtio_transport_common.c
> @@ -400,6 +400,7 @@ static int virtio_transport_send_pkt_info(struct
> vsock_sock *vsk,
> if (virtio_transport_init_zcopy_skb(vsk, skb,
> info->msg,
> can_zcopy)) {
> + kfree_skb(skb);
> ret = -ENOMEM;
> break;
> }
>
- [PATCH net 0/4] virtio/vsock: Fix memory leaks Michal Luczaj
- [PATCH net 1/4] virtio/vsock: Fix accept_queue mem... Michal Luczaj
- Re: [PATCH net 1/4] virtio/vsock: Fix accept_q... Stefano Garzarella
- [PATCH net 3/4] virtio/vsock: Improve MSG_ZEROCOPY... Michal Luczaj
- Re: [PATCH net 3/4] virtio/vsock: Improve MSG_... Stefano Garzarella
- Re: [PATCH net 3/4] virtio/vsock: Improve MSG_... Arseniy Krasnov
- [PATCH net 4/4] virtio/vsock: Put vsock_connected_... Michal Luczaj
- Re: [PATCH net 4/4] virtio/vsock: Put vsock_co... Stefano Garzarella
- Re: [PATCH net 4/4] virtio/vsock: Put vsoc... Michal Luczaj
- Re: [PATCH net 4/4] virtio/vsock: Put ... Stefano Garzarella
- [PATCH net 2/4] virtio/vsock: Fix sk_error_queue m... Michal Luczaj
- Re: [PATCH net 2/4] virtio/vsock: Fix sk_error... Stefano Garzarella
- Re: [PATCH net 2/4] virtio/vsock: Fix sk_e... Michal Luczaj
