Patch "firmware: arm_scmi: Fix sorting of retrieved clock rates" has been added to the 5.17-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

    firmware: arm_scmi: Fix sorting of retrieved clock rates

to the 5.17-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:
     firmware-arm_scmi-fix-sorting-of-retrieved-clock-rat.patch
and it can be found in the queue-5.17 subdirectory.

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



commit b9d46ca0bdff6f374f856a14d31fe231a5fe968e
Author: Cristian Marussi <cristian.marussi@xxxxxxx>
Date:   Fri Mar 18 09:28:13 2022 +0000

    firmware: arm_scmi: Fix sorting of retrieved clock rates
    
    [ Upstream commit 23274739a5b6166f74d8d9cb5243d7bf6b46aab9 ]
    
    During SCMI Clock protocol initialization, after having retrieved from the
    SCMI platform all the available discrete rates for a specific clock, the
    clock rates array is sorted, unfortunately using a pointer to its end as
    a base instead of its start, so that sorting does not work.
    
    Fix invocation of sort() passing as base a pointer to the start of the
    retrieved clock rates array.
    
    Link: https://lore.kernel.org/r/20220318092813.49283-1-cristian.marussi@xxxxxxx
    Fixes: dccec73de91d ("firmware: arm_scmi: Keep the discrete clock rates sorted")
    Signed-off-by: Cristian Marussi <cristian.marussi@xxxxxxx>
    Signed-off-by: Sudeep Holla <sudeep.holla@xxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/firmware/arm_scmi/clock.c b/drivers/firmware/arm_scmi/clock.c
index 35b56c8ba0c0..492f3a9197ec 100644
--- a/drivers/firmware/arm_scmi/clock.c
+++ b/drivers/firmware/arm_scmi/clock.c
@@ -204,7 +204,8 @@ scmi_clock_describe_rates_get(const struct scmi_protocol_handle *ph, u32 clk_id,
 
 	if (rate_discrete && rate) {
 		clk->list.num_rates = tot_rate_cnt;
-		sort(rate, tot_rate_cnt, sizeof(*rate), rate_cmp_func, NULL);
+		sort(clk->list.rates, tot_rate_cnt, sizeof(*rate),
+		     rate_cmp_func, NULL);
 	}
 
 	clk->rate_discrete = rate_discrete;



[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