]> www.infradead.org Git - users/willy/xarray.git/commitdiff
veth: use skb_prepare_for_gro()
authorPaolo Abeni <pabeni@redhat.com>
Wed, 28 Jul 2021 16:24:04 +0000 (18:24 +0200)
committerDavid S. Miller <davem@davemloft.net>
Thu, 29 Jul 2021 11:18:12 +0000 (12:18 +0100)
Leveraging the previous patch we can now avoid orphaning the
skb in the veth gro path, allowing correct backpressure.

Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/veth.c

index 381670c08ba72652fd432e34a57f90275fe987b2..50eb43e5bf459bb998e264d399bc85d4e9d73594 100644 (file)
@@ -713,7 +713,7 @@ static struct sk_buff *veth_xdp_rcv_skb(struct veth_rq *rq,
        int mac_len, delta, off;
        struct xdp_buff xdp;
 
-       skb_orphan_partial(skb);
+       skb_prepare_for_gro(skb);
 
        rcu_read_lock();
        xdp_prog = rcu_dereference(rq->xdp_prog);