commit | 92e9f4faffca70c82126e59552f6e8ff8f95cc65 | [log] [tgz] |
---|---|---|
author | Bo Sun <bo@mboxify.com> | Tue Sep 30 14:12:36 2025 +0800 |
committer | Jakub Kicinski <kuba@kernel.org> | Tue Sep 30 17:27:44 2025 -0700 |
tree | ad770ac37655194187d5aacfd7d8183e2a7616ce | |
parent | cd9ea7da41a449ff1950230a35990155457b9879 [diff] |
octeontx2-pf: fix bitmap leak The bitmap allocated with bitmap_zalloc() in otx2_probe() was not released in otx2_remove(). Unbinding and rebinding the driver therefore triggers a kmemleak warning: unreferenced object (size 8): backtrace: bitmap_zalloc otx2_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>