summaryrefslogtreecommitdiff
path: root/usr/src/cmd/mdb/common/modules/genunix/streams.c
diff options
context:
space:
mode:
authormeem <none@none>2005-10-26 12:34:04 -0700
committermeem <none@none>2005-10-26 12:34:04 -0700
commit595aa6e48d8a5812a3a42afa5f63ee6f772c7f4e (patch)
tree3d1299f9a18af8bbe3377c646e79521363ff33d2 /usr/src/cmd/mdb/common/modules/genunix/streams.c
parent513ad6b46a6c5f600866fda47cd9fefdd5a50e46 (diff)
downloadillumos-joyent-595aa6e48d8a5812a3a42afa5f63ee6f772c7f4e.tar.gz
6336683 address::queue -v blows up kmdb and mdb
6338969 netstrategy needs to use SIOCGLIFFLAGS and friends to see IFF_VIRTUAL 6339847 ip_rcm incorrectly parses interface names 6340643 ip_rcm is lugging around dead code 6340645 ip_rcm tracks needless phyint state
Diffstat (limited to 'usr/src/cmd/mdb/common/modules/genunix/streams.c')
-rw-r--r--usr/src/cmd/mdb/common/modules/genunix/streams.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/usr/src/cmd/mdb/common/modules/genunix/streams.c b/usr/src/cmd/mdb/common/modules/genunix/streams.c
index bf062a8a05..56d633157d 100644
--- a/usr/src/cmd/mdb/common/modules/genunix/streams.c
+++ b/usr/src/cmd/mdb/common/modules/genunix/streams.c
@@ -95,7 +95,7 @@ static const strflags_t qf[] = {
{ SF(_QINSERTING), "module is inserted with _I_INSERT" },
{ SF(_QREMOVING) "module is removed with _I_REMOVE" },
{ SF(_QASSOCIATED), "queue is associated with a device" },
- { SF(0), NULL }
+ { 0, NULL, NULL }
};
/*
@@ -110,7 +110,7 @@ static const struct str_flags sqf[] = {
{ SF(SQ_WANTWAKEUP) "Thread waiting on sq_wait" },
{ SF(SQ_WANTEXWAKEUP), "Thread waiting on sq_exwait" },
{ SF(SQ_EVENTS), "There are events on syncq" },
- { SF(0), NULL }
+ { 0, NULL, NULL }
};
/*
@@ -125,7 +125,7 @@ static const struct str_flags sqt[] = {
{ SF(SQ_COSVC), "Concurrent outer svc procedure" },
{ SF(SQ_COOC), "Concurrent outer open/close" },
{ SF(SQ_COCB), "Concurrent outer callback" },
- { SF(0), NULL }
+ { 0, NULL, NULL }
};
/*
@@ -164,7 +164,7 @@ static const struct str_flags stdf[] = {
{ SF(STREOPENFAIL), "re-open has failed" },
{ SF(STRMATE), "this stream is a mate" },
{ SF(STRHASLINKS), "there are I_LINKs under this stream" },
- { SF(0), NULL }
+ { 0, NULL, NULL }
};
static const struct str_flags mbf[] = {
@@ -175,7 +175,7 @@ static const struct str_flags mbf[] = {
{ SF(MSGMARKNEXT), "Private: b_next's first byte marked" },
{ SF(MSGNOTMARKNEXT), "Private: ... not marked" },
{ SF(MSGHASREF), "Private: msg has reference to owner" },
- { SF(0), NULL }
+ { 0, NULL, NULL }
};
#define M_DATA_T 0xff
@@ -211,6 +211,7 @@ static const strtypes_t mbt[] = {
{ "M_STARTI", M_STARTI, "restart reception after stop" },
{ "M_PCEVENT", M_PCEVENT, "Obsoleted: do not use" },
{ "M_UNHANGUP", M_UNHANGUP, "line reconnect" },
+ { NULL, 0, NULL }
};
/* Allocation flow trace events, starting from 0 */