#!/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 input type='hidden' name='id' value='9a393b5d5988ea4eaa3e0da138321abe0dc03a68'/> Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/net/mpls/mpls_gso.c
AgeCommit message (Expand)Author
2016-08-30net: mpls: Fixups for GSODavid Ahern
2016-05-20gso: Remove arbitrary checks for unsupported GSOTom Herbert
2016-04-14GSO: Add GSO type for fixed IPv4 IDAlexander Duyck
2015-06-01net: Add priority to packet_offload objects.David S. Miller
2015-01-30net: mark some potential candidates __read_mostlyDaniel Borkmann
2014-12-23mpls: Fix allowed protocols for mpls gsoPravin B Shelar
2014-11-05net: Remove MPLS GSO feature.Pravin B Shelar
2014-10-31mpls: Fix mpls_gso handler.Pravin B Shelar
2014-10-20net: gso: use feature flag argument in all protocol gso handlersFlorian Westphal
2014-09-26net: Remove gso_send_check as an offload callbackTom Herbert
2014-06-04gre: Call gso_make_checksumTom Herbert
2013-10-19ipip: add GSO/TSO supportEric Dumazet
2013-05-27MPLS: Add limited GSO supportSimon Horman