#!/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 $@ png' alt='cgit logo'/> index : kernel
Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/samples/connector
AgeCommit message (Expand)Author
2020-02-04kbuild: rename hostprogs-y/always to hostprogs/always-yMasahiro Yamada
2019-05-30treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 156Thomas Gleixner
2018-12-01kbuild: announce removal of SUBDIRS if usedMasahiro Yamada
2017-11-13Merge tag 'docs-4.15' of git://git.lwn.net/linuxLinus Torvalds
2017-11-02License cleanup: add SPDX GPL-2.0 license identifier to files with no licenseGreg Kroah-Hartman
2017-10-19samples: Convert timers to use timer_setup()Kees Cook
2016-12-11make use of make variable CURDIR instead of calling pwdUwe Kleine-König
2016-04-28samples: connector: from Documentation to samples directoryArnd Bergmann