Skip to content

Commit e349017

Browse files
committed
Merge tag 'ffa-fix-6.9' of git://git.kernel.org/pub/scm/linux/kernel/git/sudeep.holla/linux into arm/fixes
Arm FF-A fix for v6.9 A single fix to address the incorrect check of VM ID count for the global notification in the response received for FFA_NOTIFICATION_INFO_GET() in the schedule receiver interrupt handler. * tag 'ffa-fix-6.9' of git://git.kernel.org/pub/scm/linux/kernel/git/sudeep.holla/linux: firmware: arm_ffa: Fix the partition ID check in ffa_notification_info_get() Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Arnd Bergmann <[email protected]>
2 parents 64c80c9 + 1a4bd2b commit e349017

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/firmware/arm_ffa/driver.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -790,7 +790,7 @@ static void ffa_notification_info_get(void)
790790

791791
part_id = packed_id_list[ids_processed++];
792792

793-
if (!ids_count[list]) { /* Global Notification */
793+
if (ids_count[list] == 1) { /* Global Notification */
794794
__do_sched_recv_cb(part_id, 0, false);
795795
continue;
796796
}

0 commit comments

Comments
 (0)