#!/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 $@ a href='/'>cgit logo index : kernel
Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/lib/seq_buf.c
AgeCommit message (Expand)Author
2024-02-15seq_buf: Fix kernel documentationAndy Shevchenko
2024-02-15seq_buf: Don't use "proxy" headersAndy Shevchenko
2023-11-02seq_buf: Export seq_buf_puts()Christophe JAILLET
2023-11-02seq_buf: Export seq_buf_putc()Christophe JAILLET
2023-10-28seq_buf: Introduce DECLARE_SEQ_BUF and seq_buf_str()Kees Cook
2023-10-20tracing: Move readpos from seq_buf to trace_seqMatthew Wilcox (Oracle)
2023-04-25seq_buf: Add seq_buf_do_printk() helperSergey Senozhatsky