Commit 459a0d39 authored by Ben Hutchings's avatar Ben Hutchings

perf: net_dropmonitor: Fix trace parameter order

commit 140c3c6a upstream.

This works much better if we don't treat protocol numbers as addresses.
Signed-off-by: default avatarBen Hutchings <ben@decadent.org.uk>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent f7b72b71
...@@ -64,7 +64,7 @@ def trace_end(): ...@@ -64,7 +64,7 @@ def trace_end():
# called from perf, when it finds a correspoinding event # called from perf, when it finds a correspoinding event
def skb__kfree_skb(name, context, cpu, sec, nsec, pid, comm, def skb__kfree_skb(name, context, cpu, sec, nsec, pid, comm,
skbaddr, protocol, location): skbaddr, location, protocol):
slocation = str(location) slocation = str(location)
try: try:
drop_log[slocation] = drop_log[slocation] + 1 drop_log[slocation] = drop_log[slocation] + 1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment