diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-10-02 15:44:41 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-10-02 15:44:41 +0000 |
commit | b00e09204f98e3baa01869bacbeb10467f0c8014 (patch) | |
tree | 0dc59f0fc2208295e4bae917f2c4fcea447a8056 /sys | |
parent | 1a83879f7485d4127f77f61caa00d2ce35a354fb (diff) |
We cannot deal with MCLBYTES > CLBYTES. Lower MCLSHIFT to 10 again
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/vax/include/param.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/vax/include/param.h b/sys/arch/vax/include/param.h index 086d5830df6..6b386499a26 100644 --- a/sys/arch/vax/include/param.h +++ b/sys/arch/vax/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.9 1997/09/12 09:21:22 maja Exp $ */ +/* $OpenBSD: param.h,v 1.10 1997/10/02 15:44:40 niklas Exp $ */ /* $NetBSD: param.h,v 1.24 1997/08/05 13:28:51 ragge Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -110,7 +110,7 @@ #endif /* MSIZE */ #ifndef MCLSHIFT -#define MCLSHIFT 11 /* convert bytes to m_buf clusters */ +#define MCLSHIFT 10 /* convert bytes to m_buf clusters */ #endif /* MCLSHIFT */ #define MCLBYTES (1 << MCLSHIFT) /* size of an m_buf cluster */ #define MCLOFSET (MCLBYTES - 1) /* offset within an m_buf cluster */ |