projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5a73493
)
x86/pmem: Fix platform-device leak in error path
author
Johan Hovold
<johan@kernel.org>
Mon, 20 Jun 2022 14:07:23 +0000
(16:07 +0200)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Wed, 17 Aug 2022 12:23:07 +0000
(14:23 +0200)
[ Upstream commit
229e73d46994f15314f58b2d39bf952111d89193
]
Make sure to free the platform device in the unlikely event that
registration fails.
Fixes: 7a67832c7e44 ("libnvdimm, e820: make CONFIG_X86_PMEM_LEGACY a tristate option")
Signed-off-by: Johan Hovold <johan@kernel.org>
Signed-off-by: Borislav Petkov <bp@suse.de>
Link:
https://lore.kernel.org/r/20220620140723.9810-1-johan@kernel.org
Signed-off-by: Sasha Levin <sashal@kernel.org>
arch/x86/kernel/pmem.c
patch
|
blob
|
history
diff --git
a/arch/x86/kernel/pmem.c
b/arch/x86/kernel/pmem.c
index 6b07faaa157980915e42dc71bdc392a7c5a704e0..23154d24b1173df04b1731aa99779fd9f3931f83 100644
(file)
--- a/
arch/x86/kernel/pmem.c
+++ b/
arch/x86/kernel/pmem.c
@@
-27,6
+27,11
@@
static __init int register_e820_pmem(void)
* simply here to trigger the module to load on demand.
*/
pdev = platform_device_alloc("e820_pmem", -1);
- return platform_device_add(pdev);
+
+ rc = platform_device_add(pdev);
+ if (rc)
+ platform_device_put(pdev);
+
+ return rc;
}
device_initcall(register_e820_pmem);