#!/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 git.cgi/linux/net-next.git' title='net-next.git Git repository'/>
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGary R Hook <gary.hook@amd.com>2016-04-18 09:21:44 -0500
committerHerbert Xu <herbert@gondor.apana.org.au>2016-04-20 17:50:06 +0800
commit58ea8abf490415c390e0cc671e875510c9b66318 (patch)
tree20a3e546b2fcf9e65410dd4ce9b088e7b2ceaecb
parent5343e674f32fb82b7a80a24b5a84eee62d3fe624 (diff)
crypto: ccp - Register the CCP as a DMA resource
The CCP has the ability to provide DMA services to the kernel using pass-through mode of the device. Register these services as general purpose DMA channels. Changes since v2: - Add a Signed-off-by Changes since v1: - Allocate memory for a string in ccp_dmaengine_register - Ensure register/unregister calls are properly ordered - Verified all changed files are listed in the diffstat - Undo some superfluous changes - Added a cc: Signed-off-by: Gary R Hook <gary.hook@amd.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>