#!/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 $@ owspan='2'>cgit logo index : kernel
Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/net/mptcp/options.c
AgeCommit message (Expand)Author
2024-08-27mptcp: pr_debug: add missing \n at the endMatthieu Baerts (NGI0)
2024-08-01mptcp: fully established after ADD_ADDR echo on MPJMatthieu Baerts (NGI0)
2024-07-30mptcp: distinguish rcv vs sent backup flag in requestsMatthieu Baerts (NGI0)
2024-04-11mptcp: add last time fields in mptcp_infoGeliang Tang
2024-02-29Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski
2024-02-26mptcp: avoid printing warning once on client sideMatthieu Baerts (NGI0)
2024-02-15Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski
2024-02-12mptcp: corner case locking for rx path fields initializationPaolo Abeni
2024-02-05mptcp: annotate lockless access for RX path fieldsPaolo Abeni
2024-02-05mptcp: annotate lockless access for the tx pathPaolo Abeni
2024-02-05mptcp: annotate access for msk keysPaolo Abeni
2024-01-12mptcp: mptcp_parse_option() fix for MPTCPOPT_MP_JOINEric Dumazet
2023-11-24mptcp: fix uninit-value in mptcp_incoming_optionsEdward Adam Davis
2023-09-18mptcp: fix bogus receive window shrinkage with multiple subflowsPaolo Abeni