Patch "ARM: OMAP2+: pdata-quirks: Fix refcount leak bug" has been added to the 5.19-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    ARM: OMAP2+: pdata-quirks: Fix refcount leak bug

to the 5.19-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     arm-omap2-pdata-quirks-fix-refcount-leak-bug.patch
and it can be found in the queue-5.19 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 8fa69deb4ba2e15bafe7833ced44aab2b23bb6bc
Author: Liang He <windhl@xxxxxxx>
Date:   Sat Jun 18 10:06:03 2022 +0800

    ARM: OMAP2+: pdata-quirks: Fix refcount leak bug
    
    [ Upstream commit 5cdbab96bab314c6f2f5e4e8b8a019181328bf5f ]
    
    In pdata_quirks_init_clocks(), the loop contains
    of_find_node_by_name() but without corresponding of_node_put().
    
    Signed-off-by: Liang He <windhl@xxxxxxx>
    Message-Id: <20220618020603.4055792-1-windhl@xxxxxxx>
    Signed-off-by: Tony Lindgren <tony@xxxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/arch/arm/mach-omap2/pdata-quirks.c b/arch/arm/mach-omap2/pdata-quirks.c
index 13f1b89f74b8..5b99d602c87b 100644
--- a/arch/arm/mach-omap2/pdata-quirks.c
+++ b/arch/arm/mach-omap2/pdata-quirks.c
@@ -540,6 +540,8 @@ pdata_quirks_init_clocks(const struct of_device_id *omap_dt_match_table)
 
 		of_platform_populate(np, omap_dt_match_table,
 				     omap_auxdata_lookup, NULL);
+
+		of_node_put(np);
 	}
 }
 



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux