33 lines
1.1 KiB
Diff
33 lines
1.1 KiB
Diff
From bbb7f8bf522960a8ca7625f539e9e5d109abb704 Mon Sep 17 00:00:00 2001
|
|
From: Pavel Moravec <pmoravec@redhat.com>
|
|
Date: Wed, 19 May 2021 08:31:45 +0200
|
|
Subject: [PATCH] [networking] collect also tc filter show ingress
|
|
|
|
Both "tc -s filter show dev %eth [|ingress]" commands required as
|
|
they provide different output.
|
|
|
|
Resolves: #2550
|
|
|
|
Signed-off-by: Pavel Moravec <pmoravec@redhat.com>
|
|
---
|
|
sos/report/plugins/networking.py | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/sos/report/plugins/networking.py b/sos/report/plugins/networking.py
|
|
index acfa027f..35646268 100644
|
|
--- a/sos/report/plugins/networking.py
|
|
+++ b/sos/report/plugins/networking.py
|
|
@@ -156,7 +156,8 @@ class Networking(Plugin):
|
|
"ethtool --phy-statistics " + eth,
|
|
"ethtool --show-priv-flags " + eth,
|
|
"ethtool --show-eee " + eth,
|
|
- "tc -s filter show dev " + eth
|
|
+ "tc -s filter show dev " + eth,
|
|
+ "tc -s filter show dev " + eth + " ingress",
|
|
], tags=eth)
|
|
|
|
# skip EEPROM collection by default, as it might hang or
|
|
--
|
|
2.26.3
|
|
|