]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
Merge branch 'net-liquidio-fix-memory-leaks-in-setup_nic_devices'
authorJakub Kicinski <kuba@kernel.org>
Fri, 30 Jan 2026 03:27:37 +0000 (19:27 -0800)
committerJakub Kicinski <kuba@kernel.org>
Fri, 30 Jan 2026 03:27:37 +0000 (19:27 -0800)
Zilin Guan says:

====================
net: liquidio: Fix memory leaks in setup_nic_devices()

This series fixes memory leaks in the initialization paths of the
NIC devices.

Patch 1 moves the initialization of oct->props[i].netdev before queue
setup calls. This ensures that if queue setup fails, the cleanup function
can find and free the allocated netdev. It also initializes lio->oct_dev
early to prevent a crash in the cleanup path.

Patch 2 fixes an off-by-one error in the PF cleanup loop. It ensures
the current device index is cleaned up and correctly handles the
post-loop devlink_alloc failure case.

Patch 3 fixes the same off-by-one error in the VF cleanup loop.
====================

Link: https://patch.msgid.link/20260128154440.278369-1-zilin@seu.edu.cn
Signed-off-by: Jakub Kicinski <kuba@kernel.org>

Trivial merge