summaryrefslogtreecommitdiff
path: root/sys/arch/arc/include/param.h
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-12-11 11:13:05 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-12-11 11:13:05 +0000
commit95fabd3a19bd7178883d20448000a7fa9dd73c06 (patch)
tree1034488ef0213323b627ff2b5c1f724a7138465d /sys/arch/arc/include/param.h
parent045ff6c1d5addc67b49047c0b0f25caa7392a900 (diff)
MCLSHIFT=11, and calc MCLBYTES in such terms. found by pefo
Diffstat (limited to 'sys/arch/arc/include/param.h')
-rw-r--r--sys/arch/arc/include/param.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/arc/include/param.h b/sys/arch/arc/include/param.h
index 26e074ec129..bee74384ceb 100644
--- a/sys/arch/arc/include/param.h
+++ b/sys/arch/arc/include/param.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: param.h,v 1.5 1996/09/20 18:18:46 pefo Exp $ */
+/* $OpenBSD: param.h,v 1.6 1996/12/11 11:12:54 deraadt Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@@ -99,8 +99,8 @@
* of the hardware page size.
*/
#define MSIZE 128 /* size of an mbuf */
-#define MCLBYTES 2048 /* enough for whole Ethernet packet */
-#define MCLSHIFT 10
+#define MCLSHIFT 11
+#define MCLBYTES (1 << MCLSHIFT) /* enough for whole Ethernet packet */
#define MCLOFSET (MCLBYTES - 1)
#ifndef NMBCLUSTERS
#ifdef GATEWAY