Patch "perf test: Fix "all PMU test" to skip hv_24x7/hv_gpci tests on powerpc" 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

    perf test: Fix "all PMU test" to skip hv_24x7/hv_gpci tests on powerpc

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:
     perf-test-fix-all-pmu-test-to-skip-hv_24x7-hv_gpci-t.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 773a7de040f954ab5165d8aca89d8a7047b00410
Author: Athira Rajeev <atrajeev@xxxxxxxxxxxxxxxxxx>
Date:   Fri May 20 15:42:36 2022 +0530

    perf test: Fix "all PMU test" to skip hv_24x7/hv_gpci tests on powerpc
    
    [ Upstream commit 451ed8058c69a3fee29fa9e2967a4e22a221fe75 ]
    
    "perf all PMU test" picks the input events from "perf list --raw-dump
    pmu" list and runs "perf stat -e" for each of the event in the list. In
    case of powerpc, the PowerVM environment supports events from hv_24x7
    and hv_gpci PMU which is of example format like below:
    
    - hv_24x7/CPM_ADJUNCT_INST,domain=?,core=?/
    - hv_gpci/event,partition_id=?/
    
    The value for "?" needs to be filled in depending on system and
    respective event. CPM_ADJUNCT_INST needs have core value and domain
    value. hv_gpci event needs partition_id.  Similarly, there are other
    events for hv_24x7 and hv_gpci having "?" in event format. Hence skip
    these events on powerpc platform since values like partition_id, domain
    is specific to system and event.
    
    Fixes: 3d5ac9effcc640d5 ("perf test: Workload test of all PMUs")
    Signed-off-by: Athira Jajeev <atrajeev@xxxxxxxxxxxxxxxxxx>
    Acked-by: Ian Rogers <irogers@xxxxxxxxxx>
    Cc: Disha Goel <disgoel@xxxxxxxxxxxxxxxxxx>
    Cc: Jiri Olsa <jolsa@xxxxxxxxxx>
    Cc: Kajol Jain <kjain@xxxxxxxxxxxxx>
    Cc: linuxppc-dev@xxxxxxxxxxxxxxxx
    Cc: Madhavan Srinivasan <maddy@xxxxxxxxxxxxxxxxxx>
    Cc: Michael Ellerman <mpe@xxxxxxxxxxxxxx>
    Cc: Nageswara R Sastry <rnsastry@xxxxxxxxxxxxx>
    Link: https://lore.kernel.org/r/20220520101236.17249-1-atrajeev@xxxxxxxxxxxxxxxxxx
    Signed-off-by: Arnaldo Carvalho de Melo <acme@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/tools/perf/tests/shell/stat_all_pmu.sh b/tools/perf/tests/shell/stat_all_pmu.sh
index b30dba455f36..9c9ef33e0b3c 100755
--- a/tools/perf/tests/shell/stat_all_pmu.sh
+++ b/tools/perf/tests/shell/stat_all_pmu.sh
@@ -5,6 +5,16 @@
 set -e
 
 for p in $(perf list --raw-dump pmu); do
+  # In powerpc, skip the events for hv_24x7 and hv_gpci.
+  # These events needs input values to be filled in for
+  # core, chip, partition id based on system.
+  # Example: hv_24x7/CPM_ADJUNCT_INST,domain=?,core=?/
+  # hv_gpci/event,partition_id=?/
+  # Hence skip these events for ppc.
+  if echo "$p" |grep -Eq 'hv_24x7|hv_gpci' ; then
+    echo "Skipping: Event '$p' in powerpc"
+    continue
+  fi
   echo "Testing $p"
   result=$(perf stat -e "$p" true 2>&1)
   if ! echo "$result" | grep -q "$p" && ! echo "$result" | grep -q "<not supported>" ; then



[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