#!/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 $@ logo' rowspan='2'>cgit logo index : kernel
Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/crypto/internal.h
AgeCommit message (Expand)Author
2020-04-16crypto: api - Fix use-after-free and race in crypto_spawn_algHerbert Xu
2019-12-11crypto: api - Fix race condition in crypto_spawn_algHerbert Xu
2019-12-11crypto: cipher - remove crt_u.cipher (struct cipher_tfm)Eric Biggers
2019-12-11crypto: compress - remove crt_u.compress (struct compress_tfm)Eric Biggers
2019-05-30treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 152Thomas Gleixner
2018-09-04crypto: api - Introduce notifier for new crypto algorithmsMartin K. Petersen
2018-03-31crypto: api - Make crypto_alg_lookup staticHerbert Xu
2018-01-05crypto: algapi - remove unused notificationsEric Biggers
2018-01-05crypto: algapi - convert cra_refcnt to refcount_tEric Biggers
2017-12-22crypto: api - Unexport crypto_larval_lookup()Eric Biggers