Patch "opp: Increase parsed_static_opps in _of_add_opp_table_v1()" has been added to the 5.4-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

    opp: Increase parsed_static_opps in _of_add_opp_table_v1()

to the 5.4-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:
     opp-increase-parsed_static_opps-in-_of_add_opp_table.patch
and it can be found in the queue-5.4 subdirectory.

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



commit bd25b0dac6dbbabb5d87edc2c52a506c9b243218
Author: Walter Lozano <walter.lozano@xxxxxxxxxxxxx>
Date:   Wed Jul 15 23:54:52 2020 -0300

    opp: Increase parsed_static_opps in _of_add_opp_table_v1()
    
    [ Upstream commit 6544abc520f0fff701e9da382110dc29676c683a ]
    
    Currently, when using _of_add_opp_table_v2 parsed_static_opps is
    increased and this value is used in _opp_remove_all_static() to
    check if there are static opp entries that need to be freed.
    Unfortunately this does not happen when using _of_add_opp_table_v1(),
    which leads to warnings.
    
    This patch increases parsed_static_opps in _of_add_opp_table_v1() in a
    similar way as in _of_add_opp_table_v2().
    
    Fixes: 03758d60265c ("opp: Replace list_kref with a local counter")
    Cc: v5.6+ <stable@xxxxxxxxxxxxxxx> # v5.6+
    Signed-off-by: Walter Lozano <walter.lozano@xxxxxxxxxxxxx>
    [ Viresh: Do the operation with lock held and set the value to 1 instead
              of incrementing it ]
    Signed-off-by: Viresh Kumar <viresh.kumar@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/opp/of.c b/drivers/opp/of.c
index 9cd8f0adacae4..249738e1e0b7a 100644
--- a/drivers/opp/of.c
+++ b/drivers/opp/of.c
@@ -733,6 +733,10 @@ static int _of_add_opp_table_v1(struct device *dev, struct opp_table *opp_table)
 		return -EINVAL;
 	}
 
+	mutex_lock(&opp_table->lock);
+	opp_table->parsed_static_opps = 1;
+	mutex_unlock(&opp_table->lock);
+
 	val = prop->value;
 	while (nr) {
 		unsigned long freq = be32_to_cpup(val++) * 1000;



[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