From 58b14b46849d53e8db2cb10de18bfa30116a47c7 Mon Sep 17 00:00:00 2001 From: Mike Karels Date: Thu, 2 Apr 1987 23:36:29 -0800 Subject: [PATCH] working with pack labels SCCS-vsn: sys/vax/vax/autoconf.c 7.6 SCCS-vsn: sys/vax/include/param.h 7.5 --- usr/src/sys/vax/include/param.h | 6 +++++- usr/src/sys/vax/vax/autoconf.c | 3 ++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/usr/src/sys/vax/include/param.h b/usr/src/sys/vax/include/param.h index d5a6f281f1..9cd92bd2a4 100644 --- a/usr/src/sys/vax/include/param.h +++ b/usr/src/sys/vax/include/param.h @@ -3,7 +3,7 @@ * All rights reserved. The Berkeley software License Agreement * specifies the terms and conditions for redistribution. * - * @(#)param.h 7.4.1.1 (Berkeley) %G% + * @(#)param.h 7.5 (Berkeley) %G% */ /* @@ -36,6 +36,9 @@ u_long ntohl(), htonl(); #define KERNBASE 0x80000000 /* start of kernel virtual */ #define BTOPKERNBASE ((u_long)KERNBASE >> PGSHIFT) +#define KERNBASE 0x80000000 /* start of kernel virtual */ +#define BTOPKERNBASE ((u_long)KERNBASE >> PGSHIFT) + #define NBPG 512 /* bytes/page */ #define PGOFSET (NBPG-1) /* byte offset into page */ #define PGSHIFT 9 /* LOG2(NBPG) */ @@ -45,6 +48,7 @@ u_long ntohl(), htonl(); #define DEV_BSIZE 512 #define DEV_BSHIFT 9 /* log2(DEV_BSIZE) */ #define BLKDEV_IOSIZE 2048 +#define MAXPHYS (63 * 1024) /* max raw I/O transfer size */ #else SECSIZE /* * Devices without disk labels and the swap virtual device diff --git a/usr/src/sys/vax/vax/autoconf.c b/usr/src/sys/vax/vax/autoconf.c index 195841776f..e63af6c31f 100644 --- a/usr/src/sys/vax/vax/autoconf.c +++ b/usr/src/sys/vax/vax/autoconf.c @@ -3,7 +3,7 @@ * All rights reserved. The Berkeley software License Agreement * specifies the terms and conditions for redistribution. * - * @(#)autoconf.c 7.5.1.1 (Berkeley) %G% + * @(#)autoconf.c 7.6 (Berkeley) %G% */ /* @@ -33,6 +33,7 @@ #include "disklabel.h" #endif SECSIZE +#include "pte.h" #include "pte.h" #include "cpu.h" #include "mem.h" -- 2.20.1