#!/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 $@ ef='/'>cgit logo index : kernel
Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/usr/include
4d5b337'>drivers/fsi: Add client driver register utilities
AgeCommit message (Expand)Author
2021-05-02usr/include: refactor .gitignoreMasahiro Yamada
2021-01-22arch: ia64: Remove rest of perfmon supportViresh Kumar
2020-07-27unexport linux/elfcore.hAl Viro
2020-05-17bpfilter: match bit size of bpfilter_umh to that of the kernelMasahiro Yamada
2020-05-12kbuild: use -MMD instead of -MD to exclude system headers from dependencyMasahiro Yamada
2020-04-11kbuild: fix comment about missing include guard detectionMasahiro Yamada
2020-03-25.gitignore: add SPDX License IdentifierMasahiro Yamada
2020-01-07kbuild: rename header-test- to no-header-test in usr/include/MakefileMasahiro Yamada
2020-01-07kbuild: detect missing include guard for exported headersMasahiro Yamada
2019-12-09kbuild: fix 'No such file or directory' warning when cleaningMasahiro Yamada
2019-12-04arch: sembuf.h: make uapi asm/sembuf.h self-containedMasahiro Yamada
2019-12-04arch: msgbuf.h: make uapi asm/msgbuf.h self-containedMasahiro Yamada
2019-12-04arch: ipcbuf.h: make uapi asm/ipcbuf.h self-containedMasahiro Yamada
2019-12-04linux/scc.h: make uapi linux/scc.h self-containedMasahiro Yamada
2019-11-15kbuild: move headers_check rule to usr/include/MakefileMasahiro Yamada
2019-11-15kbuild: remove header compile testMasahiro Yamada
2019-11-11kbuild: update compile-test header list for v5.5-rc1Masahiro Yamada
2019-10-05kbuild: update compile-test header list for v5.4-rc2Masahiro Yamada
2019-09-28Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netLinus Torvalds
2019-09-25netfilter: ebtables: use __u8 instead of uint8_t in uapi headerMasahiro Yamada
2019-08-29kbuild: remove clean-dirs syntaxMasahiro Yamada
2019-07-23kbuild: enable arch/s390/include/uapi/asm/zcrypt.h for uapi header testHeiko Carstens
2019-07-20kbuild: update compile-test header list for v5.3-rc1Masahiro Yamada
2019-07-08kbuild: compile-test exported headers to ensure they are self-containedMasahiro Yamada
Christopher Bostic
2017-06-09drivers/fsi: Add master unscanChristopher Bostic
2017-06-09drivers/fsi: Add device read/write/peek APIJeremy Kerr
2017-06-09drivers/fsi: scan slaves & register devicesJeremy Kerr
2017-06-09drivers/fsi: Set slave SMODE to init communicationChristopher Bostic
2017-06-09drivers/fsi: Implement slave initialisationJeremy Kerr
2017-06-09drivers/fsi: Set up links for slave communicationChristopher Bostic
2017-06-09drivers/fsi: Add slave & master read/write APIsJeremy Kerr
2017-06-09drivers/fsi: Add empty master scanJeremy Kerr
2017-06-09drivers/fsi: Add slave definitionJeremy Kerr
2017-06-09drivers/fsi: Add fsi master definitionJeremy Kerr