diff options
author | 2008-07-25 08:53:39 +0000 | |
---|---|---|
committer | 2008-07-25 08:53:39 +0000 | |
commit | 8ed0fd6f5fd1709e9bafc9c667deba4dda8b12bd (patch) | |
tree | f2c27792da85551e31c611abed1e3b6acd012496 | |
parent | fix apps that use isinff, isnanf; use ieee 754 mi code, as all (diff) | |
download | wireguard-openbsd-8ed0fd6f5fd1709e9bafc9c667deba4dda8b12bd.tar.xz wireguard-openbsd-8ed0fd6f5fd1709e9bafc9c667deba4dda8b12bd.zip |
shrink MINCLSIZE to MHLEN + 1 again for the release, we're not confident
enough yet that all drivers handle this correctly. intended to be grown
again after release. discussed with claudio, thib and theo
-rw-r--r-- | sys/sys/mbuf.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/mbuf.h b/sys/sys/mbuf.h index eb5ce03ea04..8b9a2a5e56e 100644 --- a/sys/sys/mbuf.h +++ b/sys/sys/mbuf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mbuf.h,v 1.99 2008/06/12 01:47:07 henning Exp $ */ +/* $OpenBSD: mbuf.h,v 1.100 2008/07/25 08:53:39 henning Exp $ */ /* $NetBSD: mbuf.h,v 1.19 1996/02/09 18:25:14 christos Exp $ */ /* @@ -48,7 +48,7 @@ #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) #define M_MAXCOMPRESS (MHLEN / 2) /* max amount to copy for compression */ /* Packet tags structure */ |