]> Gentwo Git Trees - linux/.git/commit
octeontx2-vf: fix bitmap leak
authorBo Sun <bo@mboxify.com>
Tue, 30 Sep 2025 06:12:35 +0000 (14:12 +0800)
committerJakub Kicinski <kuba@kernel.org>
Wed, 1 Oct 2025 00:27:39 +0000 (17:27 -0700)
commitcd9ea7da41a449ff1950230a35990155457b9879
tree9c9a86597c4702972a6f85f3fd3e4fa90e25a291
parent2aff4420efc2910e905ee5b000e04e87422aebc4
octeontx2-vf: fix bitmap leak

The bitmap allocated with bitmap_zalloc() in otx2vf_probe() was not
released in otx2vf_remove(). Unbinding and rebinding the driver therefore
triggers a kmemleak warning:

    unreferenced object (size 8):
      backtrace:
        bitmap_zalloc
        otx2vf_probe

Call bitmap_free() in the remove path to fix the leak.

Fixes: efabce290151 ("octeontx2-pf: AF_XDP zero copy receive support")
Signed-off-by: Bo Sun <bo@mboxify.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/ethernet/marvell/octeontx2/nic/otx2_vf.c