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
2011-07-27Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jmo...Linus Torvalds 2011-07-22fs: Merge split stringsJean Delvare 2011-06-27eCryptfs: added support for the encrypted key typeRoberto Sassu 2011-05-27eCryptfs: Allow 2 scatterlist entries for encrypted filenamesTyler Hicks 2011-03-28eCryptfs: write lock requested keysRoberto Sassu 2011-03-28eCryptfs: move ecryptfs_find_auth_tok_for_sig() call before mutex_lockRoberto Sassu 2011-03-28eCryptfs: verify authentication tokens before their useRoberto Sassu 2011-03-28eCryptfs: modified size of keysig in the ecryptfs_key_sig structureRoberto Sassu 2011-03-28eCryptfs: removed num_global_auth_toks from ecryptfs_mount_crypt_statRoberto Sassu 2011-03-28eCryptfs: ecryptfs_keyring_auth_tok_for_sig() bug fixRoberto Sassu