Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1546959

Re: [PATCH net 1/9] virtio-net: remove the warning before XDP linearizing

From Daniel Borkmann <daniel@iogearbox.net>
Newsgroups linux.kernel
Subject Re: [PATCH net 1/9] virtio-net: remove the warning before XDP linearizing
Date 2016-12-23 20:40 +0100
Message-ID <sRDR7-2It-17@gated-at.bofh.it> (permalink)
References <sRzaN-833-3@gated-at.bofh.it> <sRzaN-833-17@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


Hi Jason,

On 12/23/2016 03:37 PM, Jason Wang wrote:
> Since we use EWMA to estimate the size of rx buffer. When rx buffer
> size is underestimated, it's usual to have a packet with more than one
> buffers. Consider this is not a bug, remove the warning and correct
> the comment before XDP linearizing.
>
> Cc: John Fastabend <john.r.fastabend@intel.com>
> Signed-off-by: Jason Wang <jasowang@redhat.com>
> ---
>   drivers/net/virtio_net.c | 8 +-------
>   1 file changed, 1 insertion(+), 7 deletions(-)
>
> diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c
> index 08327e0..1067253 100644
> --- a/drivers/net/virtio_net.c
> +++ b/drivers/net/virtio_net.c
> @@ -552,14 +552,8 @@ static struct sk_buff *receive_mergeable(struct net_device *dev,
>   		struct page *xdp_page;
>   		u32 act;
>
> -		/* No known backend devices should send packets with
> -		 * more than a single buffer when XDP conditions are
> -		 * met. However it is not strictly illegal so the case
> -		 * is handled as an exception and a warning is thrown.
> -		 */
> +		/* This happens when rx buffer size is underestimated */
>   		if (unlikely(num_buf > 1)) {
> -			bpf_warn_invalid_xdp_buffer();

Could you also remove the bpf_warn_invalid_xdp_buffer(), which got added
just for this?

Thanks.

>   			/* linearize data for XDP */
>   			xdp_page = xdp_linearize_page(rq, num_buf,
>   						      page, offset, &len);
>

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH net 1/9] virtio-net: remove the warning before XDP linearizing Jason Wang <jasowang@redhat.com> - 2016-12-23 15:40 +0100
  Re: [PATCH net 1/9] virtio-net: remove the warning before XDP linearizing Daniel Borkmann <daniel@iogearbox.net> - 2016-12-23 20:40 +0100
    Re: [PATCH net 1/9] virtio-net: remove the warning before XDP  linearizing Jason Wang <jasowang@redhat.com> - 2016-12-27 04:10 +0100

csiph-web