aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaciej Fijalkowski <[email protected]>2021-03-03 19:56:35 +0100
committerDaniel Borkmann <[email protected]>2021-03-04 15:53:32 +0100
commit6bc6699881012b5bd5d49fa861a69a37fc01b49c (patch)
tree804da7a18fb0d07f50cb3dd4a12a63bb5b30bb0c
parentc95c34f01bbda4421c25fdc9b04a4a4aab10d36c (diff)
samples, bpf: Add missing munmap in xdpsock
We mmap the umem region, but we never munmap it. Add the missing call at the end of the cleanup. Fixes: 3945b37a975d ("samples/bpf: use hugepages in xdpsock app") Signed-off-by: Maciej Fijalkowski <[email protected]> Signed-off-by: Daniel Borkmann <[email protected]> Acked-by: Björn Töpel <[email protected]> Link: https://lore.kernel.org/bpf/[email protected]
-rw-r--r--samples/bpf/xdpsock_user.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/samples/bpf/xdpsock_user.c b/samples/bpf/xdpsock_user.c
index db0cb73513a5..1e2a1105d0e6 100644
--- a/samples/bpf/xdpsock_user.c
+++ b/samples/bpf/xdpsock_user.c
@@ -1699,5 +1699,7 @@ int main(int argc, char **argv)
xdpsock_cleanup();
+ munmap(bufs, NUM_FRAMES * opt_xsk_frame_size);
+
return 0;
}