In the Linux kernel, the following vulnerability has been resolved:
firmware: stratix10-svc: fix memory leaks and list corruption bugs
Fix a memory leak when genpoolalloc() fails by freeing pmem on the error path. Switch pmem allocation from devmkzalloc() to kzalloc() with explicit kfree() in the free path to match its list-managed lifetime. Remove the erroneous listdel(&svcdatamem) which corrupted the list head on failed lookups.