#!/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 ader'> cgit logo index : kernel
Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/drivers/net/wireless/ath/ath5k/qcu.c
AgeCommit message (Expand)Author
2009-08-14drivers/net/wireless/ath/ath5k: Change constant nameJulia Lawall
2009-07-10ath5k: send buffered frames after the beaconBob Copeland
2009-05-06ath5k: Beaconing fixesNick Kossifidis
2009-04-22atheros: put atheros wireless drivers into ath/Luis R. Rodriguez