]> git.baikalelectronics.ru Git - kernel.git/commitdiff
powerpc/xics: fix refcount leak in icp_opal_init()
authorLv Ruyi <lv.ruyi@zte.com.cn>
Sat, 2 Apr 2022 01:34:19 +0000 (01:34 +0000)
committerMichael Ellerman <mpe@ellerman.id.au>
Sun, 22 May 2022 05:58:30 +0000 (15:58 +1000)
The of_find_compatible_node() function returns a node pointer with
refcount incremented, use of_node_put() on it when done.

Reported-by: Zeal Robot <zealci@zte.com.cn>
Signed-off-by: Lv Ruyi <lv.ruyi@zte.com.cn>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/20220402013419.2410298-1-lv.ruyi@zte.com.cn
arch/powerpc/sysdev/xics/icp-opal.c

index bda4c32582d973c21bde4fc41f4c2ea2f79917de..4dae624b9f2f4bb50ab9392a32b47122a108662a 100644 (file)
@@ -196,6 +196,7 @@ int __init icp_opal_init(void)
 
        printk("XICS: Using OPAL ICP fallbacks\n");
 
+       of_node_put(np);
        return 0;
 }