diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-05-06 21:38:27 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-05-06 21:38:27 +0000 |
commit | ea3a8dbfd5bf314e81211147f3a2b9cea3ddff2f (patch) | |
tree | 1abaf2ebb58a403e9d08ab1d33ad5b5c0fd303d4 | |
parent | d7e423c80f8141d8018d6a5b33ea2e95369bc9b5 (diff) |
Increase MAXPHYS from 63K to 64K which brings it in line with all our
other architectures and matches NetBSD-current. hugh@ OK
-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 5fe6a8e1c51..2a8349862a8 100644 --- a/sys/arch/vax/include/param.h +++ b/sys/arch/vax/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.23 2002/04/29 07:35:24 miod Exp $ */ +/* $OpenBSD: param.h,v 1.24 2002/05/06 21:38:26 millert Exp $ */ /* $NetBSD: param.h,v 1.39 1999/10/22 21:14:34 ragge Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -86,7 +86,7 @@ #define DEV_BSIZE (1 << DEV_BSHIFT) #define BLKDEV_IOSIZE 2048 -#define MAXPHYS (63 * 1024) /* max raw I/O transfer size */ +#define MAXPHYS (64 * 1024) /* max raw I/O transfer size */ #define MAXBSIZE 0x4000 /* max FS block size - XXX */ #define UPAGES 2 /* pages of u-area */ |