mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Correct comment, MSIZE and MCLBYTES are defined in sys/param.h
and not in machine/param.h.
This commit is contained in:
parent
34894c56bc
commit
1d8aed2b21
1 changed files with 2 additions and 2 deletions
|
|
@ -41,9 +41,9 @@
|
|||
#include <sys/queue.h>
|
||||
|
||||
/*
|
||||
* Mbufs are of a single size, MSIZE (machine/param.h), which
|
||||
* Mbufs are of a single size, MSIZE (sys/param.h), which
|
||||
* includes overhead. An mbuf may add a single "mbuf cluster" of size
|
||||
* MCLBYTES (also in machine/param.h), which has no additional overhead
|
||||
* MCLBYTES (also in sys/param.h), which has no additional overhead
|
||||
* and is used instead of the internal data area; this is done when
|
||||
* at least MINCLSIZE of data must be stored. Additionally, it is possible
|
||||
* to allocate a separate buffer externally and attach it to the mbuf in
|
||||
|
|
|
|||
Loading…
Reference in a new issue