Skip to content

Commit ec6446d

Browse files
kjain101mfischer
authored andcommitted
fpga: dfl: fme: Fix cpu hotplug issue in performance reporting
The performance reporting driver added cpu hotplug feature but it didn't add pmu migration call in cpu offline function. This can create an issue incase the current designated cpu being used to collect fme pmu data got offline, as based on current code we are not migrating fme pmu to new target cpu. Because of that perf will still try to fetch data from that offline cpu and hence we will not get counter data. Patch fixed this issue by adding pmu_migrate_context call in fme_perf_offline_cpu function. Fixes: 724142f ("fpga: dfl: fme: add performance reporting support") Cc: [email protected] Tested-by: Xu Yilun <[email protected]> Acked-by: Wu Hao <[email protected]> Signed-off-by: Kajol Jain <[email protected]> Signed-off-by: Moritz Fischer <[email protected]>
1 parent ff11764 commit ec6446d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

drivers/fpga/dfl-fme-perf.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -953,6 +953,8 @@ static int fme_perf_offline_cpu(unsigned int cpu, struct hlist_node *node)
953953
return 0;
954954

955955
priv->cpu = target;
956+
perf_pmu_migrate_context(&priv->pmu, cpu, target);
957+
956958
return 0;
957959
}
958960

0 commit comments

Comments
 (0)