diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2006-03-19 22:01:33 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2006-03-19 22:01:33 +0000 |
commit | 1e2910c74a45efb5d81fa7c55a4848e85831dc70 (patch) | |
tree | b2ed9c3f08e06daa616400f5c7816b514263159b /sys/arch/powerpc | |
parent | 1a848a5e36fd023919b60fcf1f283c69cecf3254 (diff) |
Change BLKDEV_IOSIZE down to 2KB like on all other platforms; ok kettenis@
Diffstat (limited to 'sys/arch/powerpc')
-rw-r--r-- | sys/arch/powerpc/include/param.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/powerpc/include/param.h b/sys/arch/powerpc/include/param.h index cab06b9e71e..13416354fa0 100644 --- a/sys/arch/powerpc/include/param.h +++ b/sys/arch/powerpc/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.27 2005/10/26 18:57:51 martin Exp $ */ +/* $OpenBSD: param.h,v 1.28 2006/03/19 22:01:32 miod Exp $ */ /* $NetBSD: param.h,v 1.1 1996/09/30 16:34:28 ws Exp $ */ /*- @@ -62,7 +62,7 @@ #define DEV_BSHIFT 9 /* log2(DEV_BSIZE) */ #define DEV_BSIZE (1 << DEV_BSHIFT) -#define BLKDEV_IOSIZE NBPG +#define BLKDEV_IOSIZE 2048 #define MAXPHYS (64 * 1024) /* max raw I/O transfer size */ #define UPAGES 4 |