Skip to content

Commit

Permalink
samples, bpf: Add missing munmap in xdpsock
Browse files Browse the repository at this point in the history
commit 6bc6699 upstream.

We mmap the umem region, but we never munmap it.
Add the missing call at the end of the cleanup.

Fixes: 3945b37 ("samples/bpf: use hugepages in xdpsock app")
Signed-off-by: Maciej Fijalkowski <maciej.fijalkowski@intel.com>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: Björn Töpel <bjorn.topel@intel.com>
Link: https://lore.kernel.org/bpf/20210303185636.18070-3-maciej.fijalkowski@intel.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
mfijalko authored and gregkh committed Mar 17, 2021
1 parent 8bc6d1c commit ad9704e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions samples/bpf/xdpsock_user.c
Expand Up @@ -1699,5 +1699,7 @@ int main(int argc, char **argv)

xdpsock_cleanup();

munmap(bufs, NUM_FRAMES * opt_xsk_frame_size);

return 0;
}

0 comments on commit ad9704e

Please sign in to comment.