aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorBen Hutchings <ben@decadent.org.uk>2013-05-20 14:44:43 +0000
committerBen Hutchings <ben@decadent.org.uk>2013-05-30 14:35:04 +0100
commit459a0d39ee135123fc91670d5665daf6deb80d74 (patch)
tree32c6c1c69caa66a4c74e04a22add24cb0720443a /tools
parentf7b72b71fe00b5159d71f0d385c8d5e5865bcd32 (diff)
downloadkernel_samsung_smdk4412-459a0d39ee135123fc91670d5665daf6deb80d74.zip
kernel_samsung_smdk4412-459a0d39ee135123fc91670d5665daf6deb80d74.tar.gz
kernel_samsung_smdk4412-459a0d39ee135123fc91670d5665daf6deb80d74.tar.bz2
perf: net_dropmonitor: Fix trace parameter order
commit 140c3c6a2bcd2c31e2f7f5a8d59689724776c8e5 upstream. This works much better if we don't treat protocol numbers as addresses. Signed-off-by: Ben Hutchings <ben@decadent.org.uk> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/perf/scripts/python/net_dropmonitor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/scripts/python/net_dropmonitor.py b/tools/perf/scripts/python/net_dropmonitor.py
index a4ffc95..adbfbf0 100755
--- a/tools/perf/scripts/python/net_dropmonitor.py
+++ b/tools/perf/scripts/python/net_dropmonitor.py
@@ -64,7 +64,7 @@ def trace_end():
# called from perf, when it finds a correspoinding event
def skb__kfree_skb(name, context, cpu, sec, nsec, pid, comm,
- skbaddr, protocol, location):
+ skbaddr, location, protocol):
slocation = str(location)
try:
drop_log[slocation] = drop_log[slocation] + 1