Re: [PATCH bpf 1/1] xdp: unpin xdp umem pages in error path

2019-08-20 Thread Daniel Borkmann
On 8/15/19 10:56 PM, Ivan Khoronzhuk wrote: Fix mem leak caused by missed unpin routine for umem pages. Fixes: 8aef7340ae9695 ("commit xsk: introduce xdp_umem_page") Signed-off-by: Ivan Khoronzhuk Applied & fixed up 'Fixes:' tag, thanks.

Re: [PATCH bpf 1/1] xdp: unpin xdp umem pages in error path

2019-08-15 Thread Jonathan Lemon
On 15 Aug 2019, at 13:56, Ivan Khoronzhuk wrote: > Fix mem leak caused by missed unpin routine for umem pages. > Fixes: 8aef7340ae9695 ("commit xsk: introduce xdp_umem_page") > > Signed-off-by: Ivan Khoronzhuk Acked-by: Jonathan Lemon

[PATCH bpf 1/1] xdp: unpin xdp umem pages in error path

2019-08-15 Thread Ivan Khoronzhuk
Fix mem leak caused by missed unpin routine for umem pages. Fixes: 8aef7340ae9695 ("commit xsk: introduce xdp_umem_page") Signed-off-by: Ivan Khoronzhuk --- Based on bpf/master net/xdp/xdp_umem.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/net/xdp/xdp_umem.c b/net/xd