#!/bin/bash # description: export perf data to a postgresql database # args: [database name] [columns] [calls] 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 3 ] ; then echo "usage: export-to-postgresql-report [database name] [columns] [calls]" exit fi if [ "$n_args" -gt 2 ] ; then dbname=$1 columns=$2 calls=$3 shift 3 elif [ "$n_args" -gt 1 ] ; then dbname=$1 columns=$2 shift 2 elif [ "$n_args" -gt 0 ] ; then dbname=$1 shift fi perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/export-to-postgresql.py $dbname $columns $calls ef='/cgit.cgi/'>index : net-next.git
net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/net/rds/loop.c
d class='ctrl'>
AgeCommit message (Expand)AuthorFilesLines
mode:
authorSean Nyekjaer <sean.nyekjaer@prevas.dk>2017-01-27 08:46:23 +0100
committerDavid S. Miller <davem@davemloft.net>2017-01-27 11:10:50 -0500
commit9d162ed69f51cbd9ee5a0c7e82aba7acc96362ff (patch)
tree74742b23fbdd09ac31679dffc82290a5293b226f
parent95120ebf647180fbcfba3172677f18116f9231d5 (diff)
net: phy: micrel: add support for KSZ8795
This is adds support for the PHYs in the KSZ8795 5port managed switch. It will allow to detect the link between the switch and the soc and uses the same read_status functions as the KSZ8873MLL switch. Signed-off-by: Sean Nyekjaer <sean.nyekjaer@prevas.dk> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat