Michael S. Tsirkin
2020-May-06 07:37 UTC
[PATCH net-next 2/2] virtio-net: fix the XDP truesize calculation for mergeable buffers
On Wed, May 06, 2020 at 02:16:33PM +0800, Jason Wang wrote:> We should not exclude headroom and tailroom when XDP is set. So this > patch fixes this by initializing the truesize from PAGE_SIZE when XDP > is set. > > Cc: Jesper Dangaard Brouer <brouer at redhat.com> > Signed-off-by: Jason Wang <jasowang at redhat.com>Seems too aggressive, we do not use up the whole page for the size.> --- > drivers/net/virtio_net.c | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) > > diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c > index 98dd75b665a5..3f3aa8308918 100644 > --- a/drivers/net/virtio_net.c > +++ b/drivers/net/virtio_net.c > @@ -1184,7 +1184,7 @@ static int add_recvbuf_mergeable(struct virtnet_info *vi, > char *buf; > void *ctx; > int err; > - unsigned int len, hole; > + unsigned int len, hole, truesize; > > /* Extra tailroom is needed to satisfy XDP's assumption. This > * means rx frags coalescing won't work, but consider we've > @@ -1194,6 +1194,7 @@ static int add_recvbuf_mergeable(struct virtnet_info *vi, > if (unlikely(!skb_page_frag_refill(len + room, alloc_frag, gfp))) > return -ENOMEM; > > + truesize = headroom ? PAGE_SIZE : len; > buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset; > buf += headroom; /* advance address leaving hole at front of pkt */ > get_page(alloc_frag->page);Is this really just on the XDP path? Looks like a confusing way to detect that.> @@ -1205,11 +1206,12 @@ static int add_recvbuf_mergeable(struct virtnet_info *vi, > * the current buffer. > */ > len += hole; > + truesize += hole; > alloc_frag->offset += hole; > } > > sg_init_one(rq->sg, buf, len); > - ctx = mergeable_len_to_ctx(len, headroom); > + ctx = mergeable_len_to_ctx(truesize, headroom); > err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp); > if (err < 0) > put_page(virt_to_head_page(buf)); > -- > 2.20.1
Jason Wang
2020-May-06 08:21 UTC
[PATCH net-next 2/2] virtio-net: fix the XDP truesize calculation for mergeable buffers
On 2020/5/6 ??3:37, Michael S. Tsirkin wrote:> On Wed, May 06, 2020 at 02:16:33PM +0800, Jason Wang wrote: >> We should not exclude headroom and tailroom when XDP is set. So this >> patch fixes this by initializing the truesize from PAGE_SIZE when XDP >> is set. >> >> Cc: Jesper Dangaard Brouer<brouer at redhat.com> >> Signed-off-by: Jason Wang<jasowang at redhat.com> > Seems too aggressive, we do not use up the whole page for the size. > > >For XDP yes, we do: static unsigned int get_mergeable_buf_len(struct receive_queue *rq, ??? ??? ??? ??? ??? ? struct ewma_pkt_len *avg_pkt_len, ??? ??? ??? ??? ??? ? unsigned int room) { ??? const size_t hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf); ??? unsigned int len; ??? if (room) ??? ??? return PAGE_SIZE - room; ... Thanks
Michael S. Tsirkin
2020-May-06 12:08 UTC
[PATCH net-next 2/2] virtio-net: fix the XDP truesize calculation for mergeable buffers
On Wed, May 06, 2020 at 04:21:15PM +0800, Jason Wang wrote:> > On 2020/5/6 ??3:37, Michael S. Tsirkin wrote: > > On Wed, May 06, 2020 at 02:16:33PM +0800, Jason Wang wrote: > > > We should not exclude headroom and tailroom when XDP is set. So this > > > patch fixes this by initializing the truesize from PAGE_SIZE when XDP > > > is set. > > > > > > Cc: Jesper Dangaard Brouer<brouer at redhat.com> > > > Signed-off-by: Jason Wang<jasowang at redhat.com> > > Seems too aggressive, we do not use up the whole page for the size. > > > > > > > > For XDP yes, we do: > > static unsigned int get_mergeable_buf_len(struct receive_queue *rq, > ??? ??? ??? ??? ??? ? struct ewma_pkt_len *avg_pkt_len, > ??? ??? ??? ??? ??? ? unsigned int room) > { > ??? const size_t hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf); > ??? unsigned int len; > > ??? if (room) > ??? ??? return PAGE_SIZE - room; > > ... > > ThanksHmm. But that's only for new buffers. Buffers that were outstanding before xdp was attached don't use the whole page, do they? Also, with TCP smallqueues blocking the queue like that might be a problem. Could you try and check performance impact of this? I looked at what other drivers do and I see they tend to copy the skb in XDP_PASS case. ATM we don't normally - but should we? -- MST
Maybe Matching Threads
- [PATCH net-next 2/2] virtio-net: fix the XDP truesize calculation for mergeable buffers
- [PATCH net-next 2/2] virtio-net: fix the XDP truesize calculation for mergeable buffers
- [PATCH net-next 0/2] virtio-net: re enable XDP_REDIRECT for mergeable buffer
- [PATCH net-next 0/2] virtio-net: re enable XDP_REDIRECT for mergeable buffer
- [PATCH net V2] virtio-net: re enable XDP_REDIRECT for mergeable buffer