diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-12-11 11:13:05 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-12-11 11:13:05 +0000 |
commit | 95fabd3a19bd7178883d20448000a7fa9dd73c06 (patch) | |
tree | 1034488ef0213323b627ff2b5c1f724a7138465d /sys/arch/vax | |
parent | 045ff6c1d5addc67b49047c0b0f25caa7392a900 (diff) |
MCLSHIFT=11, and calc MCLBYTES in such terms. found by pefo
Diffstat (limited to 'sys/arch/vax')
-rw-r--r-- | sys/arch/vax/include/param.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arch/vax/include/param.h b/sys/arch/vax/include/param.h index ef969e37240..ec5d9c6b95b 100644 --- a/sys/arch/vax/include/param.h +++ b/sys/arch/vax/include/param.h @@ -99,7 +99,7 @@ #endif /* MSIZE */ #ifndef MCLSHIFT -#define MCLSHIFT 10 /* convert bytes to m_buf clusters */ +#define MCLSHIFT 11 /* 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 */ |