#!/bin/bash # # Profiling physical memory by all retired load instructions/uops event # MEM_INST_RETIRED.ALL_LOADS or MEM_UOPS_RETIRED.ALL_LOADS # load=`perf list | grep mem_inst_retired.all_loads` if [ -z "$load" ]; then load=`perf list | grep mem_uops_retired.all_loads` fi if [ -z "$load" ]; then echo "There is no event to count all retired load instructions/uops." exit 1 fi arg=$(echo $load | tr -d ' ') arg="$arg:P" perf record --phys-data -e $arg $@ >cgit logo index : kernel
Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/tools/Makefile
AgeCommit message (Expand)Author
2017-11-18Merge tag 'platform-drivers-x86-v4.15-1' of git://git.infradead.org/linux-pla...Linus Torvalds
2017-11-04Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller
2017-11-03tools/wmi: add a sample for dell smbios communication over WMIMario Limonciello
2017-11-02License cleanup: add SPDX GPL-2.0 license identifier to files with no licenseGreg Kroah-Hartman
2017-10-04tools: rename tools/net directory to tools/bpfJakub Kicinski
2017-09-05Merge tag 'spi-v4.14' of git://git.kernel.org/pub/scm/linux/kernel/git/brooni...Linus Torvalds
2017-09-05Merge tag 'staging-4.14-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git...Linus Torvalds
2017-08-24x86/lguest: Remove lguest supportJuergen Gross
2017-08-09iio: tools: add install sectionAndy Shevchenko
2017-07-26spi: tools: add install sectionAndy Shevchenko
2017-06-05tools: Add install make target for liblockdepAlexander Sverdlin
2017-05-03tools/kvm: fix top level makefileJustin M. Forbes