diff options
author | Jiri Kosina <jkosina@suse.cz> | 2023-06-27 23:37:24 +0300 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2023-06-27 23:37:24 +0300 |
commit | e80b500370e71b8cd7dd64be4080cee0a3e5068f (patch) | |
tree | 130b5288bf5f8420482a1aaf021f2054b5687f04 /tools/perf/scripts/python/net_dropmonitor.py | |
parent | 177d591aba3838abc13968a25a3b339b420d97ca (diff) | |
parent | 72e49cadea390556ca60fad973740ddc5587e408 (diff) | |
download | linux-e80b500370e71b8cd7dd64be4080cee0a3e5068f.tar.xz |
Merge branch 'for-6.5/apple' into for-linus
- improved support for Keychron K8 keyboard (Lasse Brun)
Diffstat (limited to 'tools/perf/scripts/python/net_dropmonitor.py')
-rwxr-xr-x | tools/perf/scripts/python/net_dropmonitor.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/perf/scripts/python/net_dropmonitor.py b/tools/perf/scripts/python/net_dropmonitor.py index 101059971738..a97e7a6e0940 100755 --- a/tools/perf/scripts/python/net_dropmonitor.py +++ b/tools/perf/scripts/python/net_dropmonitor.py @@ -68,9 +68,9 @@ def trace_end(): get_kallsyms_table() print_drop_table() -# called from perf, when it finds a correspoinding event +# called from perf, when it finds a corresponding event def skb__kfree_skb(name, context, cpu, sec, nsec, pid, comm, callchain, - skbaddr, location, protocol): + skbaddr, location, protocol, reason): slocation = str(location) try: drop_log[slocation] = drop_log[slocation] + 1 |