In the Linux kernel, the following vulnerability has been resolved:
net: sfp: fix memory leak in sfp_probe()
sfpprobe() allocates a memory chunk from sfp with sfpalloc(). When devmaddaction() fails, sfp is not freed, which leads to a memory leak.
We should use devmaddactionorreset() instead of devmaddaction().