#!/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 $@ /'>cgit logo index : kernel
Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/net/8021q
AgeCommit message (Expand)Author
2024-09-03netdev_features: remove NETIF_F_ALL_FCOEAlexander Lobakin
2024-09-03netdev_features: convert NETIF_F_FCOE_MTU to dev->fcoe_mtuAlexander Lobakin
2024-09-03netdev_features: convert NETIF_F_LLTX to dev->lltxAlexander Lobakin
2024-09-03netdevice: convert private flags > BIT(31) to bitfieldsAlexander Lobakin
2024-07-15net: Add struct kernel_ethtool_ts_infoKory Maincent
2024-05-07net: annotate writes on dev->mtu from ndo_change_mtu()Eric Dumazet
2024-05-02Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski
2024-05-02net: gro: fix udp bad offset in socket lookup by adding {inner_}network_offse...Richard Gobert
2024-03-29netlink: introduce type-checking attribute iterationJohannes Berg
2024-02-26rtnetlink: prepare nla_put_iflink() to run under RCUEric Dumazet
2024-02-21net: vlan: constify the struct device_type usageRicardo B. Marliere