#!/bin/bash # description: export perf data to a sqlite3 database # args: [database name] [columns] [calls] n_args=0 for i in "$@" do if expr match "$i" "-" > /dev/null ; then break fi n_args=$(( $n_args + 1 )) done if [ "$n_args" -gt 3 ] ; then echo "usage: export-to-sqlite-report [database name] [columns] [calls]" exit fi if [ "$n_args" -gt 2 ] ; then dbname=$1 columns=$2 calls=$3 shift 3 elif [ "$n_args" -gt 1 ] ; then dbname=$1 columns=$2 shift 2 elif [ "$n_args" -gt 0 ] ; then dbname=$1 shift fi perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/export-to-sqlite.py $dbname $columns $calls Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/include/net/ip_tunnels.h
AgeCommit message (Expand)Author
2022-10-03net: Add helper function to parse netlink msg of ip_tunnel_parmLiu Jian
2022-10-03net: Add helper function to parse netlink msg of ip_tunnel_encapLiu Jian
2022-08-18ip_tunnel: Respect tunnel key's "flow_flags" in IP tunnelsEyal Birger
2022-07-26ip_tunnels: Add new flow flags field to ip_tunnel_keyPaul Chaignon
2022-07-22ip_tunnels: allow VXLAN/GENEVE to inherit TOS/TTL from VLANMatthias May
2022-06-09net: adopt u64_stats_t in struct pcpu_sw_netstatsEric Dumazet
2022-04-25ip_gre, ip6_gre: Fix race condition on o_seqno in collect_md modePeilin Ye
2022-04-15net: Handle l3mdev in ip_tunnel_init_flowDavid Ahern