mirror of
https://github.com/opnsense/src.git
synced 2026-07-16 04:22:59 -04:00
In INVARIANTS case also check that nodes do not pass queues of mbufs
each other.
This commit is contained in:
parent
c6118fcc1c
commit
b32cfb3228
1 changed files with 5 additions and 1 deletions
|
|
@ -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 a new issue