]> www.infradead.org Git - users/jedix/linux-maple.git/commit
bpf: Do not walk twice the map on free
authorBenjamin Tissoires <bentiss@kernel.org>
Tue, 30 Apr 2024 10:43:24 +0000 (12:43 +0200)
committerDaniel Borkmann <daniel@iogearbox.net>
Tue, 30 Apr 2024 14:28:33 +0000 (16:28 +0200)
commitb98a5c68ccaa94e93b9e898091fe2cf21c1500e6
tree1d966ca8b4a480aaa183bc5d1eb2759645af885a
parent1bba3b3d373dbafae891e7cb06b8c82c8d62aba1
bpf: Do not walk twice the map on free

If someone stores both a timer and a workqueue in a map, on free
we would walk it twice.

Add a check in array_map_free_timers_wq and free the timers and
workqueues if they are present.

Fixes: 246331e3f1ea ("bpf: allow struct bpf_wq to be embedded in arraymaps and hashmaps")
Signed-off-by: Benjamin Tissoires <bentiss@kernel.org>
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Link: https://lore.kernel.org/bpf/20240430-bpf-next-v3-1-27afe7f3b17c@kernel.org
kernel/bpf/arraymap.c