Re: [PATCH bpf-next] xdp: introduce convert_to_xdp_buff utility routine

2020-05-26 Thread Lorenzo Bianconi
> On Tue, 26 May 2020 15:48:13 +0200 > Lorenzo Bianconi wrote: > [...] > > diff --git a/include/net/xdp.h b/include/net/xdp.h > > index 90f11760bd12..5dbdd65866a9 100644 > > --- a/include/net/xdp.h > > +++ b/include/net/xdp.h > > @@ -106,6 +106,16 @@ void xdp_warn(const char *msg, const char *f

Re: [PATCH bpf-next] xdp: introduce convert_to_xdp_buff utility routine

2020-05-26 Thread Jesper Dangaard Brouer
On Tue, 26 May 2020 15:48:13 +0200 Lorenzo Bianconi wrote: > Introduce convert_to_xdp_buff utility routine to initialize xdp_buff > fields from xdp_frames ones. Rely on convert_to_xdp_buff in veth xdp > code > > Suggested-by: Jesper Dangaard Brouer > Signed-off-by: Lorenzo Bianconi > --- > dr

[PATCH bpf-next] xdp: introduce convert_to_xdp_buff utility routine

2020-05-26 Thread Lorenzo Bianconi
Introduce convert_to_xdp_buff utility routine to initialize xdp_buff fields from xdp_frames ones. Rely on convert_to_xdp_buff in veth xdp code Suggested-by: Jesper Dangaard Brouer Signed-off-by: Lorenzo Bianconi --- drivers/net/veth.c | 12 ++-- include/net/xdp.h | 10 ++ 2 fil