Patch "perf arch events: Fix duplicate RISC-V SBI firmware event name" has been added to the 6.10-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 arch events: Fix duplicate RISC-V SBI firmware event name

to the 6.10-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-arch-events-fix-duplicate-risc-v-sbi-firmware-e.patch
and it can be found in the queue-6.10 subdirectory.

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



commit 6d5340ef35c57640a7c1a59b51e13cb31c7c8f86
Author: Eric Lin <eric.lin@xxxxxxxxxx>
Date:   Fri Jul 19 19:50:18 2024 +0800

    perf arch events: Fix duplicate RISC-V SBI firmware event name
    
    [ Upstream commit 63ba5b0fb4f54db256ec43b3062b2606b383055d ]
    
    Currently, the RISC-V firmware JSON file has duplicate event name
    "FW_SFENCE_VMA_RECEIVED". According to the RISC-V SBI PMU extension[1],
    the event name should be "FW_SFENCE_VMA_ASID_SENT".
    
    Before this patch:
    $ perf list
    
    firmware:
      fw_access_load
           [Load access trap event. Unit: cpu]
      fw_access_store
           [Store access trap event. Unit: cpu]
    ....
     fw_set_timer
           [Set timer event. Unit: cpu]
      fw_sfence_vma_asid_received
           [Received SFENCE.VMA with ASID request from other HART event. Unit: cpu]
      fw_sfence_vma_received
           [Sent SFENCE.VMA with ASID request to other HART event. Unit: cpu]
    
    After this patch:
    $ perf list
    
    firmware:
      fw_access_load
           [Load access trap event. Unit: cpu]
      fw_access_store
           [Store access trap event. Unit: cpu]
    .....
      fw_set_timer
           [Set timer event. Unit: cpu]
      fw_sfence_vma_asid_received
           [Received SFENCE.VMA with ASID request from other HART event. Unit: cpu]
      fw_sfence_vma_asid_sent
           [Sent SFENCE.VMA with ASID request to other HART event. Unit: cpu]
      fw_sfence_vma_received
           [Received SFENCE.VMA request from other HART event. Unit: cpu]
    
    Link: https://github.com/riscv-non-isa/riscv-sbi-doc/blob/master/src/ext-pmu.adoc#event-firmware-events-type-15 [1]
    Fixes: 8f0dcb4e7364 ("perf arch events: riscv sbi firmware std event files")
    Fixes: c4f769d4093d ("perf vendor events riscv: add Sifive U74 JSON file")
    Fixes: acbf6de674ef ("perf vendor events riscv: Add StarFive Dubhe-80 JSON file")
    Fixes: 7340c6df49df ("perf vendor events riscv: add T-HEAD C9xx JSON file")
    Fixes: f5102e31c209 ("riscv: andes: Support specifying symbolic firmware and hardware raw event")
    Signed-off-by: Eric Lin <eric.lin@xxxxxxxxxx>
    Reviewed-by: Samuel Holland <samuel.holland@xxxxxxxxxx>
    Reviewed-by: Nikita Shubin <n.shubin@xxxxxxxxx>
    Reviewed-by: Inochi Amaoto <inochiama@xxxxxxxxxxx>
    Reviewed-by: Andrew Jones <ajones@xxxxxxxxxxxxxxxx>
    Reviewed-by: Atish Patra <atishp@xxxxxxxxxxxx>
    Link: https://lore.kernel.org/r/20240719115018.27356-1-eric.lin@xxxxxxxxxx
    Signed-off-by: Palmer Dabbelt <palmer@xxxxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/tools/perf/pmu-events/arch/riscv/andes/ax45/firmware.json b/tools/perf/pmu-events/arch/riscv/andes/ax45/firmware.json
index 9b4a032186a7b..7149caec4f80e 100644
--- a/tools/perf/pmu-events/arch/riscv/andes/ax45/firmware.json
+++ b/tools/perf/pmu-events/arch/riscv/andes/ax45/firmware.json
@@ -36,7 +36,7 @@
     "ArchStdEvent": "FW_SFENCE_VMA_RECEIVED"
   },
   {
-    "ArchStdEvent": "FW_SFENCE_VMA_RECEIVED"
+    "ArchStdEvent": "FW_SFENCE_VMA_ASID_SENT"
   },
   {
     "ArchStdEvent": "FW_SFENCE_VMA_ASID_RECEIVED"
diff --git a/tools/perf/pmu-events/arch/riscv/riscv-sbi-firmware.json b/tools/perf/pmu-events/arch/riscv/riscv-sbi-firmware.json
index a9939823b14b5..0c9b9a2d2958a 100644
--- a/tools/perf/pmu-events/arch/riscv/riscv-sbi-firmware.json
+++ b/tools/perf/pmu-events/arch/riscv/riscv-sbi-firmware.json
@@ -74,7 +74,7 @@
   {
     "PublicDescription": "Sent SFENCE.VMA with ASID request to other HART event",
     "ConfigCode": "0x800000000000000c",
-    "EventName": "FW_SFENCE_VMA_RECEIVED",
+    "EventName": "FW_SFENCE_VMA_ASID_SENT",
     "BriefDescription": "Sent SFENCE.VMA with ASID request to other HART event"
   },
   {
diff --git a/tools/perf/pmu-events/arch/riscv/sifive/u74/firmware.json b/tools/perf/pmu-events/arch/riscv/sifive/u74/firmware.json
index 9b4a032186a7b..7149caec4f80e 100644
--- a/tools/perf/pmu-events/arch/riscv/sifive/u74/firmware.json
+++ b/tools/perf/pmu-events/arch/riscv/sifive/u74/firmware.json
@@ -36,7 +36,7 @@
     "ArchStdEvent": "FW_SFENCE_VMA_RECEIVED"
   },
   {
-    "ArchStdEvent": "FW_SFENCE_VMA_RECEIVED"
+    "ArchStdEvent": "FW_SFENCE_VMA_ASID_SENT"
   },
   {
     "ArchStdEvent": "FW_SFENCE_VMA_ASID_RECEIVED"
diff --git a/tools/perf/pmu-events/arch/riscv/starfive/dubhe-80/firmware.json b/tools/perf/pmu-events/arch/riscv/starfive/dubhe-80/firmware.json
index 9b4a032186a7b..7149caec4f80e 100644
--- a/tools/perf/pmu-events/arch/riscv/starfive/dubhe-80/firmware.json
+++ b/tools/perf/pmu-events/arch/riscv/starfive/dubhe-80/firmware.json
@@ -36,7 +36,7 @@
     "ArchStdEvent": "FW_SFENCE_VMA_RECEIVED"
   },
   {
-    "ArchStdEvent": "FW_SFENCE_VMA_RECEIVED"
+    "ArchStdEvent": "FW_SFENCE_VMA_ASID_SENT"
   },
   {
     "ArchStdEvent": "FW_SFENCE_VMA_ASID_RECEIVED"
diff --git a/tools/perf/pmu-events/arch/riscv/thead/c900-legacy/firmware.json b/tools/perf/pmu-events/arch/riscv/thead/c900-legacy/firmware.json
index 9b4a032186a7b..7149caec4f80e 100644
--- a/tools/perf/pmu-events/arch/riscv/thead/c900-legacy/firmware.json
+++ b/tools/perf/pmu-events/arch/riscv/thead/c900-legacy/firmware.json
@@ -36,7 +36,7 @@
     "ArchStdEvent": "FW_SFENCE_VMA_RECEIVED"
   },
   {
-    "ArchStdEvent": "FW_SFENCE_VMA_RECEIVED"
+    "ArchStdEvent": "FW_SFENCE_VMA_ASID_SENT"
   },
   {
     "ArchStdEvent": "FW_SFENCE_VMA_ASID_RECEIVED"




[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