diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2010-05-24 02:00:36 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2010-05-24 02:00:36 +0000 |
commit | 14241c5f46778af7f4dda900398929aa5911a91a (patch) | |
tree | ff84dfa524012341121847b0d282fdc0cbf09eef /sys | |
parent | 2dceebc0c1609fbdad6c265d8d71b69c93f615db (diff) |
there is no reason for one MAXPHYS definition to be different from all the others
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/arm/include/param.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/arm/include/param.h b/sys/arch/arm/include/param.h index 542b1fbc20c..18978a312d5 100644 --- a/sys/arch/arm/include/param.h +++ b/sys/arch/arm/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.12 2008/05/04 09:57:47 martin Exp $ */ +/* $OpenBSD: param.h,v 1.13 2010/05/24 02:00:35 deraadt Exp $ */ /* $NetBSD: param.h,v 1.9 2002/03/24 03:37:23 thorpej Exp $ */ /* @@ -149,7 +149,7 @@ void delay (unsigned); #define BLKDEV_IOSIZE 2048 #ifndef MAXPHYS -#define MAXPHYS 65536 /* max I/O transfer size */ +#define MAXPHYS (64 * 1024) /* max I/O transfer size */ #endif /* pages ("clicks") to disk blocks */ |