mirror of
https://github.com/torvalds/linux.git
synced 2026-06-08 14:42:37 +02:00
bpf, devmap: Add missing bulk queue free
[ Upstream commitedabf4d9dd] dev_map_free() forgot to free bulk queue when freeing its entries. Fixes:5d053f9da4("bpf: devmap prepare xdp frames for bulking") Signed-off-by: Toshiaki Makita <toshiaki.makita1@gmail.com> Acked-by: Jesper Dangaard Brouer <brouer@redhat.com> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
8d09e86210
commit
ab44f8bcf2
|
|
@ -186,6 +186,7 @@ static void dev_map_free(struct bpf_map *map)
|
|||
if (!dev)
|
||||
continue;
|
||||
|
||||
free_percpu(dev->bulkq);
|
||||
dev_put(dev->dev);
|
||||
kfree(dev);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user