diff options
author | 2023-11-29 09:06:52 +0000 | |
---|---|---|
committer | 2023-11-29 09:06:52 +0000 | |
commit | eabd217ca5adff7b052980312d76791d1da886d8 (patch) | |
tree | 3c6cb71e2da1462fecc6bdcfcdf6bd859ce6e9c4 /cmds/dumpstate/dumpstate.cpp | |
parent | 5dfafd8beb30627238effc68751be95ed10d2df1 (diff) | |
parent | ef69e9c668260e6a98bda424b67f1fc53049703c (diff) |
Merge "Add network link statistics to bugreport" into main am: f9c46249bf am: 36f1b9aaa9 am: ef69e9c668
Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/2836363
Change-Id: I22a2afe707d725008c482d522da91d8f5cffe15a
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to 'cmds/dumpstate/dumpstate.cpp')
-rw-r--r-- | cmds/dumpstate/dumpstate.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/dumpstate/dumpstate.cpp b/cmds/dumpstate/dumpstate.cpp index dd0ee5fb22..d65da11b41 100644 --- a/cmds/dumpstate/dumpstate.cpp +++ b/cmds/dumpstate/dumpstate.cpp @@ -1243,7 +1243,7 @@ static void DumpPacketStats() { static void DumpIpAddrAndRules() { /* The following have a tendency to get wedged when wifi drivers/fw goes belly-up. */ - RunCommand("NETWORK INTERFACES", {"ip", "link"}); + RunCommand("NETWORK INTERFACES", {"ip", "-s", "link"}); RunCommand("IPv4 ADDRESSES", {"ip", "-4", "addr", "show"}); RunCommand("IPv6 ADDRESSES", {"ip", "-6", "addr", "show"}); RunCommand("IP RULES", {"ip", "rule", "show"}); |