diff options
author | 1997-01-16 14:26:25 +0000 | |
---|---|---|
committer | 1997-01-16 14:26:25 +0000 | |
commit | aaec6fd7d1984dc3e2572d121789b298a236c002 (patch) | |
tree | d7b9461ee6f8e1e0d6b9e338fce573ea52111101 | |
parent | Added scsiprint from NetBSD, needed by new driver for VAX. -moj (diff) | |
download | wireguard-openbsd-aaec6fd7d1984dc3e2572d121789b298a236c002.tar.xz wireguard-openbsd-aaec6fd7d1984dc3e2572d121789b298a236c002.zip |
Don't define MAXBSIZE here. -moj
-rw-r--r-- | sys/arch/vax/include/param.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/vax/include/param.h b/sys/arch/vax/include/param.h index a50abd5fe93..ef99aae85d8 100644 --- a/sys/arch/vax/include/param.h +++ b/sys/arch/vax/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.6 1997/01/15 23:24:42 maja Exp $ */ +/* $OpenBSD: param.h,v 1.7 1997/01/16 14:26:25 maja Exp $ */ /* $NetBSD: param.h,v 1.22 1997/01/11 11:06:17 ragge Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -76,7 +76,9 @@ #define BLKDEV_IOSIZE 2048 #define MAXPHYS (63 * 1024) /* max raw I/O transfer size */ +#ifdef 0 #define MAXBSIZE 0x4000 /* max FS block size - XXX */ +#endif #define CLSIZELOG2 1 #define CLSIZE 2 |