#!/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 idden' name='id' value='380a8fe1b2f49f262673485d1c7f1c0da170a926'/> Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/include/linux/avf
AgeCommit message (Expand)Author
2023-01-25virtchnl: i40e/iavf: rename iwarp to rdmaJesse Brandeburg
2023-01-25virtchnl: do structure hardeningJesse Brandeburg
2023-01-25virtchnl: update header and increase header clarityJesse Brandeburg
2023-01-25virtchnl: remove unused structure declarationJesse Brandeburg
2022-10-27ice: Add support Flex RXDMichal Jaron
2021-12-17virtchnl: Add support for new VLAN capabilitiesBrett Creeley
2021-10-29virtchnl: Use the BIT() macro for capability/offload flagsBrett Creeley
2021-10-29virtchnl: Remove unused VIRTCHNL_VF_OFFLOAD_RSVD defineBrett Creeley
2021-06-07Merge branch '100GbE' of git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/...David S. Miller
2021-06-07virtchnl: Use pad byte in virtchnl_ether_addr to specify MAC typeBrett Creeley
2021-06-04virtchnl: Add missing padding to virtchnl_proto_hdrsGeert Uytterhoeven
2021-04-22ice: Enable RSS configure for AVFQi Zhang
2021-04-22ice: Advertise virtchnl UDP segmentation offload capabilityBrett Creeley
2021-04-22ice: Allow ignoring opcodes on specific VFMichal Swiatkowski
2021-04-09Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski
2021-03-25virtchnl: Fix layout of RSS structuresNorbert Ciosek
2021-03-22ice: Enable FDIR Configure for AVFQi Zhang