This is a note to let you know that I've just added the patch titled virtio/vsock: remove redundant 'skb_pull()' call to the 6.1-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: virtio-vsock-remove-redundant-skb_pull-call.patch and it can be found in the queue-6.1 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 6825e6b4f8e53799d83bc39ca6ec5baed4e2adde Mon Sep 17 00:00:00 2001 From: Arseniy Krasnov <avkrasnov@xxxxxxxxxxxxxx> Date: Tue, 14 Mar 2023 14:06:53 +0300 Subject: virtio/vsock: remove redundant 'skb_pull()' call From: Arseniy Krasnov <avkrasnov@xxxxxxxxxxxxxx> commit 6825e6b4f8e53799d83bc39ca6ec5baed4e2adde upstream. Since we now no longer use 'skb->len' to update credit, there is no sense to update skbuff state, because it is used only once after dequeue to copy data and then will be released. Fixes: 71dc9ec9ac7d ("virtio/vsock: replace virtio_vsock_pkt with sk_buff") Signed-off-by: Arseniy Krasnov <AVKrasnov@xxxxxxxxxxxxxx> Reviewed-by: Stefano Garzarella <sgarzare@xxxxxxxxxx> Acked-by: Bobby Eshleman <bobby.eshleman@xxxxxxxxxxxxx> Signed-off-by: David S. Miller <davem@xxxxxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- net/vmw_vsock/virtio_transport_common.c | 1 - 1 file changed, 1 deletion(-) --- a/net/vmw_vsock/virtio_transport_common.c +++ b/net/vmw_vsock/virtio_transport_common.c @@ -465,7 +465,6 @@ static int virtio_transport_seqpacket_do dequeued_len = err; } else { user_buf_len -= bytes_to_copy; - skb_pull(skb, bytes_to_copy); } spin_lock_bh(&vvs->rx_lock); Patches currently in stable-queue which might be from avkrasnov@xxxxxxxxxxxxxx are queue-6.1/virtio-vsock-fix-header-length-on-skb-merging.patch queue-6.1/virtio-vsock-don-t-drop-skbuff-on-copy-failure.patch queue-6.1/virtio-vsock-don-t-use-skbuff-state-to-account-credit.patch queue-6.1/virtio-vsock-remove-redundant-skb_pull-call.patch