summaryrefslogtreecommitdiff
path: root/tools/perf/scripts/perl/bin/rwtop-report
blob: 83e11ec2e190988c142aab5d4644778b812b9447 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash
# description: system-wide r/w top
# args: [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 1 ] ; then
    echo "usage: rwtop-report [interval]"
    exit
fi
if [ "$n_args" -gt 0 ] ; then
    interval=$1
    shift
fi
perf script $@ -s "$PERF_EXEC_PATH"/scripts/perl/rwtop.pl $interval
href='/cgit.cgi/linux/net-next.git/commit/net/l3mdev/l3mdev.c?h=nds-private-remove&id=2eabb8b8d68bc9c7779ba8b04bec8d4f8baed0bc'>2eabb8b8d68bc9c7779ba8b04bec8d4f8baed0bc (patch) tree4d8ea8e6ca52f1938269937834641205d8d888f0 /net/l3mdev/l3mdev.c parent49def1853334396f948dcb4cedb9347abb318df5 (diff)parentce1ca7d2d140a1f4aaffd297ac487f246963dd2f (diff)
Merge tag 'nfsd-4.10-1' of git://linux-nfs.org/~bfields/linux
Pull nfsd fixes from Bruce Fields: "Miscellaneous nfsd bugfixes, one for a 4.10 regression, three for older bugs" * tag 'nfsd-4.10-1' of git://linux-nfs.org/~bfields/linux: svcrdma: avoid duplicate dma unmapping during error recovery sunrpc: don't call sleeping functions from the notifier block callbacks svcrpc: don't leak contexts on PROC_DESTROY nfsd: fix supported attributes for acl & labels
Diffstat (limited to 'net/l3mdev/l3mdev.c')