In INVARIANTS case also check that nodes do not pass queues of mbufs
each other.
This commit is contained in:
parent
c6118fcc1c
commit
b32cfb3228
@ -330,8 +330,12 @@ static ng_ID_t nextID = 1;
|
||||
int total; \
|
||||
\
|
||||
M_ASSERTPKTHDR(m); \
|
||||
for (total = 0, n = (m); n != NULL; n = n->m_next) \
|
||||
for (total = 0, n = (m); n != NULL; n = n->m_next) { \
|
||||
total += n->m_len; \
|
||||
if (n->m_nextpkt != NULL) \
|
||||
panic("%s: m_nextpkt", __func__); \
|
||||
} \
|
||||
|
||||
if ((m)->m_pkthdr.len != total) { \
|
||||
panic("%s: %d != %d", \
|
||||
__func__, (m)->m_pkthdr.len, total); \
|
||||
|
Loading…
Reference in New Issue
Block a user