diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-17 20:17:31 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-17 20:17:31 +0000 |
commit | 9d5cb9b84f6b278788275499bc337666f8b49aba (patch) | |
tree | f7752fe7e057fd1d14f01eec01aa4d072e2674c6 /sys | |
parent | 5989f5a06769dd25d57917f8298a9ed254db1781 (diff) |
move MINCLSIZE back to preferring clusters; there is some fallout because
the other parts of this were not done. This is a conservative decision
for this release.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/sys/mbuf.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/sys/mbuf.h b/sys/sys/mbuf.h index 16e31527dcc..c2e8d876eac 100644 --- a/sys/sys/mbuf.h +++ b/sys/sys/mbuf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mbuf.h,v 1.76 2004/06/22 22:46:30 millert Exp $ */ +/* $OpenBSD: mbuf.h,v 1.77 2004/09/17 20:17:30 deraadt Exp $ */ /* $NetBSD: mbuf.h,v 1.19 1996/02/09 18:25:14 christos Exp $ */ /* @@ -49,8 +49,7 @@ #define MLEN (MSIZE - sizeof(struct m_hdr)) /* normal data len */ #define MHLEN (MLEN - sizeof(struct pkthdr)) /* data len w/pkthdr */ -/* smallest amount to put in cluster */ -#define MINCLSIZE (MHLEN + MLEN + 1) +#define MINCLSIZE (MHLEN + 1) /* smallest amount to put in cluster */ #define M_MAXCOMPRESS (MHLEN / 2) /* max amount to copy for compression */ /* Packet tags structure */ |