summaryrefslogtreecommitdiff
path: root/tools/perf/scripts/python/bin/sctop-report
blob: c32db294124da91d2654302c9d8e32673ec2bc4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/bash
# description: syscall top
# args: [comm] [interval]
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 2 ] ; then
    echo "usage: sctop-report [comm] [interval]"
    exit
fi
if [ "$n_args" -gt 1 ] ; then
    comm=$1
    interval=$2
    shift 2
elif [ "$n_args" -gt 0 ] ; then
    interval=$1
    shift
fi
perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/sctop.py $comm $interval
39f82e4a5ff3bf47b3eba14ff1aa'>vlan: introduce __vlan_find_dev_deep()Jiri Pirko 2011-06-11vlan: Fix the ingress VLAN_FLAG_REORDER_HDR checkJiri Pirko 2011-04-12net: vlan: make non-hw-accel rx path similar to hw-accelJiri Pirko 2010-11-16vlan: lockless transmit pathEric Dumazet 2010-10-21vlan: Centralize handling of hardware acceleration.Jesse Gross 2010-10-05net: add a core netdev->rx_dropped counterEric Dumazet 2010-10-04Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/ne...David S. Miller 2010-09-30vlan: dont drop packets from unknown vlans in promiscuous modeEric Dumazet 2010-09-23net: return operator cleanupEric Dumazet 2010-08-31vlan: Use vlan_dev_real_dev in vlan_hwaccel_do_receiveJiri Pirko 2010-08-26gro: __napi_gro_receive() optimizationsEric Dumazet 2010-08-22net: 802.1q: make vlan_hwaccel_do_receive() return voidChangli Gao 2010-07-18vlan_dev: VLAN 0 should be treated as "no vlan tag" (802.1p packet)Pedro Garcia 2010-06-28vlan: 64 bit rx countersEric Dumazet 2010-06-10net: deliver skbs on inactive slaves to exact matchesJohn Fastabend 2010-05-17net: Remove unnecessary semicolons after switch statementsJoe Perches