summaryrefslogtreecommitdiff
path: root/sys/arch/sun3
diff options
context:
space:
mode:
authorkstailey <kstailey@cvs.openbsd.org>1997-09-08 18:08:52 +0000
committerkstailey <kstailey@cvs.openbsd.org>1997-09-08 18:08:52 +0000
commit9a95e6772f4a306186af4f107aeabc020e68df34 (patch)
treec05ffd47071ceba1b6e60260ccd457fe18eb57d5 /sys/arch/sun3
parentc79d983786cefc20c9a9fdbf82ab606e7b2f3d51 (diff)
remove more stuff redundant to m68k/param.h
Diffstat (limited to 'sys/arch/sun3')
-rw-r--r--sys/arch/sun3/include/param.h44
1 files changed, 1 insertions, 43 deletions
diff --git a/sys/arch/sun3/include/param.h b/sys/arch/sun3/include/param.h
index 7dc04aaaf16..0e345080681 100644
--- a/sys/arch/sun3/include/param.h
+++ b/sys/arch/sun3/include/param.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: param.h,v 1.15 1997/09/08 01:30:30 kstailey Exp $ */
+/* $OpenBSD: param.h,v 1.16 1997/09/08 18:08:51 kstailey Exp $ */
/* $NetBSD: param.h,v 1.34 1996/03/04 05:04:40 cgd Exp $ */
/*
@@ -61,8 +61,6 @@
* must be cast to any desired pointer type.
*/
-#define ALIGN(p) (((u_int)(p) + ALIGNBYTES) &~ ALIGNBYTES)
-
#define PGSHIFT 13 /* LOG2(NBPG) */
#define NBSG 0x20000 /* bytes/segment */
@@ -70,57 +68,17 @@
#define SEGSHIFT 17 /* LOG2(NBSG) */
#define KERNBASE 0x0E000000 /* start of kernel virtual */
-#define BTOPKERNBASE ((u_long)KERNBASE >> PGSHIFT)
#define KERNTEXTOFF 0x0E004000 /* start of kernel text */
#include <m68k/param.h>
/*
- * Constants related to network buffer management.
- * MCLBYTES must be no larger than CLBYTES (the software page size), and,
- * on machines that exchange pages of input or output buffers with mbuf
- * clusters (MAPPED_MBUFS), MCLBYTES must also be an integral multiple
- * of the hardware page size.
- */
-#define MSIZE 128 /* size of an mbuf */
-#define MCLSHIFT 11
-#define MCLBYTES (1 << MCLSHIFT) /* large enough for ether MTU */
-#define MCLOFSET (MCLBYTES - 1)
-#ifndef NMBCLUSTERS
-#ifdef GATEWAY
-#define NMBCLUSTERS 512 /* map size, max cluster allocation */
-#else
-#define NMBCLUSTERS 256 /* map size, max cluster allocation */
-#endif
-#endif
-
-/*
* Size of kernel malloc arena in CLBYTES-sized logical pages
*/
#ifndef NKMEMCLUSTERS
#define NKMEMCLUSTERS (2048*1024/CLBYTES)
#endif
-/* pages ("clicks") to disk blocks */
-#define ctod(x) ((x) << (PGSHIFT - DEV_BSHIFT))
-#define dtoc(x) ((x) >> (PGSHIFT - DEV_BSHIFT))
-
-/* pages to bytes */
-#define ctob(x) ((x) << PGSHIFT)
-#define btoc(x) (((x) + PGOFSET) >> PGSHIFT)
-
-/* bytes to disk blocks */
-#define btodb(x) ((x) >> DEV_BSHIFT)
-#define dbtob(x) ((x) << DEV_BSHIFT)
-
-/*
- * Map a ``block device block'' to a file system block.
- * This should be device dependent, and should use the bsize
- * field from the disk label.
- * For now though just use DEV_BSIZE.
- */
-#define bdbtofsb(bn) ((bn) / (BLKDEV_IOSIZE/DEV_BSIZE))
-
/*
* spl functions; all are done in-line
*/