diff options
author | 2015-02-10 03:46:30 +0000 | |
---|---|---|
committer | 2015-02-10 03:46:30 +0000 | |
commit | c2ae806579a86de140419637a32bf054818db624 (patch) | |
tree | d6050b65deaed2dd2521f798c400bb360820607b | |
parent | assert that we hold the scheduler lock in unsleep() (diff) | |
download | wireguard-openbsd-c2ae806579a86de140419637a32bf054818db624.tar.xz wireguard-openbsd-c2ae806579a86de140419637a32bf054818db624.zip |
Remove references to <sys/param.h> in comment, since MSIZE and MCLBYTES
are no longer defined there.
-rw-r--r-- | sys/sys/mbuf.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/sys/sys/mbuf.h b/sys/sys/mbuf.h index da86a56b48b..364d7ea4007 100644 --- a/sys/sys/mbuf.h +++ b/sys/sys/mbuf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mbuf.h,v 1.186 2015/02/10 03:39:06 lteo Exp $ */ +/* $OpenBSD: mbuf.h,v 1.187 2015/02/10 03:46:30 lteo Exp $ */ /* $NetBSD: mbuf.h,v 1.19 1996/02/09 18:25:14 christos Exp $ */ /* @@ -48,10 +48,9 @@ #define MSIZE 256 /* size of an mbuf */ /* - * 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 sys/param.h), which has no additional overhead - * and is used instead of the internal data area; this is done when + * Mbufs are of a single size, MSIZE, which includes overhead. An mbuf may + * add a single "mbuf cluster" of size MCLBYTES, 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. */ |