Correct comment, MSIZE and MCLBYTES are defined in sys/param.h

and not in machine/param.h.
This commit is contained in:
Maxime Henrion 2003-03-26 10:35:31 +00:00
parent 34894c56bc
commit 1d8aed2b21
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=112674

View File

@ -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