#!/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 $@ class='logo' rowspan='2'>cgit logo index : kernel
Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/drivers/spi/spi-sh-msiof.c
AgeCommit message (Expand)Author
2024-01-30spi: sh-msiof: avoid integer overflow in constantsWolfram Sang
2023-12-12spi: sh-msiof: Enforce fixed DTDL for R-Car H3Wolfram Sang
2023-08-21spi: sh-msiof: switch to use modern nameYang Yingliang
2023-07-14spi: Explicitly include correct DT includesRob Herring
2023-03-13spi: struct spi_device constificationMark Brown
2023-03-13spi: sh-msiof: Mark OF related data as maybe unusedKrzysztof Kozlowski
2023-03-13spi: sh-msiof: Remove casts to drop constnessGeert Uytterhoeven
2023-03-11spi: Replace all spi->chip_select and spi->cs_gpiod references with function ...Amit Kumar Mahapatra via Alsa-devel
2023-03-06spi: sh-msiof: Convert to platform remove callback returning voidUwe Kleine-König