Re: [PATCH bpf-next v6 00/12] XDP unaligned chunk placement support

2019-08-30 Thread Daniel Borkmann
On 8/27/19 4:25 AM, Kevin Laatz wrote: This patch set adds the ability to use unaligned chunks in the XDP umem. Currently, all chunk addresses passed to the umem are masked to be chunk size aligned (max is PAGE_SIZE). This limits where we can place chunks within the umem as well as limiting the

Re: [PATCH bpf-next v6 00/12] XDP unaligned chunk placement support

2019-08-30 Thread Jonathan Lemon
On 26 Aug 2019, at 19:25, Kevin Laatz wrote: > This patch set adds the ability to use unaligned chunks in the XDP umem. Thanks, Kevin for your hard work and perseverance on this patch set! -- Jonathan

[PATCH bpf-next v6 00/12] XDP unaligned chunk placement support

2019-08-27 Thread Kevin Laatz
This patch set adds the ability to use unaligned chunks in the XDP umem. Currently, all chunk addresses passed to the umem are masked to be chunk size aligned (max is PAGE_SIZE). This limits where we can place chunks within the umem as well as limiting the packet sizes that are supported. The cha