diff options
| author | Thomas Gleixner <tglx@linutronix.de> | 2018-02-16 09:47:26 -0500 |
|---|---|---|
| committer | Thomas Gleixner <tglx@linutronix.de> | 2018-02-16 09:47:26 -0500 |
| commit | 6dee6ae9d62642e81def4d461d71f13a6496ab59 (patch) | |
| tree | 6c75d416c427a59f190e197ad83fe59b7bebf656 /tools/perf/scripts/python/bin | |
| parent | 1beaeacdc88b537703d04d5536235d0bbb36db93 (diff) | |
| parent | 0b24a0bbe2147815d982d9335c41bb10c04f40bc (diff) | |
Merge tag 'irqchip-4.16-2' of git://git.kernel.org/pub/scm/linux/kernel/git/maz/arm-platforms into irq/urgent
Pull irqchip updates for 4.16-rc2 from Marc Zyngier
- A MIPS GIC fix for spurious, masked interrupts
- A fix for a subtle IPI bug in GICv3
- Do not probe GICv3 ITSs that are marked as disabled
- Multi-MSI support for GICv2m
- Various cleanups
Diffstat (limited to 'tools/perf/scripts/python/bin')
| -rw-r--r-- | tools/perf/scripts/python/bin/mem-phys-addr-record | 19 | ||||
| -rw-r--r-- | tools/perf/scripts/python/bin/mem-phys-addr-report | 3 |
2 files changed, 22 insertions, 0 deletions
diff --git a/tools/perf/scripts/python/bin/mem-phys-addr-record b/tools/perf/scripts/python/bin/mem-phys-addr-record new file mode 100644 index 000000000000..5a875122a904 --- /dev/null +++ b/tools/perf/scripts/python/bin/mem-phys-addr-record | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | #!/bin/bash | ||
| 2 | |||
| 3 | # | ||
| 4 | # Profiling physical memory by all retired load instructions/uops event | ||
| 5 | # MEM_INST_RETIRED.ALL_LOADS or MEM_UOPS_RETIRED.ALL_LOADS | ||
| 6 | # | ||
| 7 | |||
| 8 | load=`perf list | grep mem_inst_retired.all_loads` | ||
| 9 | if [ -z "$load" ]; then | ||
| 10 | load=`perf list | grep mem_uops_retired.all_loads` | ||
| 11 | fi | ||
| 12 | if [ -z "$load" ]; then | ||
| 13 | echo "There is no event to count all retired load instructions/uops." | ||
| 14 | exit 1 | ||
| 15 | fi | ||
| 16 | |||
| 17 | arg=$(echo $load | tr -d ' ') | ||
| 18 | arg="$arg:P" | ||
| 19 | perf record --phys-data -e $arg $@ | ||
diff --git a/tools/perf/scripts/python/bin/mem-phys-addr-report b/tools/perf/scripts/python/bin/mem-phys-addr-report new file mode 100644 index 000000000000..3f2b847e2eab --- /dev/null +++ b/tools/perf/scripts/python/bin/mem-phys-addr-report | |||
| @@ -0,0 +1,3 @@ | |||
| 1 | #!/bin/bash | ||
| 2 | # description: resolve physical address samples | ||
| 3 | perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/mem-phys-addr.py | ||
