Patch "mmc: core: quirks: Add of_node_put() when breaking out of loop" has been added to the 5.18-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

    mmc: core: quirks: Add of_node_put() when breaking out of loop

to the 5.18-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:
     mmc-core-quirks-add-of_node_put-when-breaking-out-of.patch
and it can be found in the queue-5.18 subdirectory.

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



commit 3cb542fb5f77dd1cd1a38aa017c919690842a2c7
Author: Liang He <windhl@xxxxxxx>
Date:   Tue Jul 19 17:10:51 2022 +0800

    mmc: core: quirks: Add of_node_put() when breaking out of loop
    
    [ Upstream commit 883c1d6fa4368a63cae2d6ae2d9c91141c60e233 ]
    
    In mmc_fixup_of_compatible_match(), we should call of_node_put()
    when breaking out of for_each_child_of_node() which will increase
    and decrease the refcount during one iteration.
    
    Fixes: b360b1102670 ("mmc: core: allow to match the device tree to apply quirks")
    Signed-off-by: Liang He <windhl@xxxxxxx>
    Link: https://lore.kernel.org/r/20220719091051.1210806-1-windhl@xxxxxxx
    Signed-off-by: Ulf Hansson <ulf.hansson@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/mmc/core/quirks.h b/drivers/mmc/core/quirks.h
index f879dc63d936..be4393988086 100644
--- a/drivers/mmc/core/quirks.h
+++ b/drivers/mmc/core/quirks.h
@@ -163,8 +163,10 @@ static inline bool mmc_fixup_of_compatible_match(struct mmc_card *card,
 	struct device_node *np;
 
 	for_each_child_of_node(mmc_dev(card->host)->of_node, np) {
-		if (of_device_is_compatible(np, compatible))
+		if (of_device_is_compatible(np, compatible)) {
+			of_node_put(np);
 			return true;
+		}
 	}
 
 	return false;



[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