Patch "firmware: arm_ffa: Fix uuid parameter to ffa_partition_probe" 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

    firmware: arm_ffa: Fix uuid parameter to ffa_partition_probe

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:
     firmware-arm_ffa-fix-uuid-parameter-to-ffa_partition.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 9c4ae5948f3c61a84d8731cd68f5bb6d386ca7c6
Author: Sudeep Holla <sudeep.holla@xxxxxxx>
Date:   Fri Apr 29 12:39:43 2022 +0100

    firmware: arm_ffa: Fix uuid parameter to ffa_partition_probe
    
    [ Upstream commit f3c45c045e25ed52461829d2ce07954f72b6ad15 ]
    
    While we pass uuid_null intentionally to ffa_partition_probe in
    ffa_setup_partitions to get the count of the partitions, it must not be
    uuid_null in ffa_partition_info_get which is used by the ffa_drivers
    to fetch the specific partition info passing the UUID of the partition.
    
    Fix ffa_partition_info_get by passing the received uuid down to
    ffa_partition_probe so that the correct partition information is fetched.
    
    Link: https://lore.kernel.org/r/20220429113946.2087145-1-sudeep.holla@xxxxxxx
    Fixes: d0c0bce83122 ("firmware: arm_ffa: Setup in-kernel users of FFA partitions")
    Reported-by: Arunachalam Ganapathy <arunachalam.ganapathy@xxxxxxx>
    Signed-off-by: Sudeep Holla <sudeep.holla@xxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/firmware/arm_ffa/driver.c b/drivers/firmware/arm_ffa/driver.c
index 14f900047ac0..8fa1785afd42 100644
--- a/drivers/firmware/arm_ffa/driver.c
+++ b/drivers/firmware/arm_ffa/driver.c
@@ -582,7 +582,7 @@ static int ffa_partition_info_get(const char *uuid_str,
 		return -ENODEV;
 	}
 
-	count = ffa_partition_probe(&uuid_null, &pbuf);
+	count = ffa_partition_probe(&uuid, &pbuf);
 	if (count <= 0)
 		return -ENOENT;
 



[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