diff options
author | np <np@FreeBSD.org> | 2014-05-06 03:02:02 +0000 |
---|---|---|
committer | np <np@FreeBSD.org> | 2014-05-06 03:02:02 +0000 |
commit | bb4526b702e59e55e2a8c36e6eed0adb69f7c412 (patch) | |
tree | 3bb80722900db095c596cd020b2a409185745340 | |
parent | 5bd3f1337e94b744dfde90346c2304d0b558ea8e (diff) | |
download | FreeBSD-src-bb4526b702e59e55e2a8c36e6eed0adb69f7c412.zip FreeBSD-src-bb4526b702e59e55e2a8c36e6eed0adb69f7c412.tar.gz |
MFC r261534:
cxgbetool: Display the congestion channel map in hex.
-rw-r--r-- | tools/tools/cxgbetool/cxgbetool.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/tools/cxgbetool/cxgbetool.c b/tools/tools/cxgbetool/cxgbetool.c index 42f13bb..ab6fee5 100644 --- a/tools/tools/cxgbetool/cxgbetool.c +++ b/tools/tools/cxgbetool/cxgbetool.c @@ -1368,7 +1368,7 @@ show_sge_context(const struct t4_sge_context *p) FIELD1("CngDBPHdr:", 6), FIELD1("CngDBPData:", 5), FIELD1("CngIMSG:", 4), - FIELD("CngChMap:", 0, 3), + { "CngChMap:", 0, 3, 0, 1, 0}, { NULL } }; static struct field_desc t5_conm[] = { @@ -1377,7 +1377,7 @@ show_sge_context(const struct t4_sge_context *p) FIELD1("CngDBPHdr:", 18), FIELD1("CngDBPData:", 17), FIELD1("CngIMSG:", 16), - FIELD("CngChMap:", 0, 15), + { "CngChMap:", 0, 15, 0, 1, 0}, { NULL } }; |