diff options
author | dillon <dillon@FreeBSD.org> | 1999-09-22 05:48:31 +0000 |
---|---|---|
committer | dillon <dillon@FreeBSD.org> | 1999-09-22 05:48:31 +0000 |
commit | 2817a59f503d7cc04787d396baad85b1e9c62dfc (patch) | |
tree | e98e44678717404edcdffdb09c18b3c0af75c441 /sys/alpha | |
parent | 76fac7f888ce508d9eae39dd2e0eacc7a9e56628 (diff) | |
download | FreeBSD-src-2817a59f503d7cc04787d396baad85b1e9c62dfc.zip FreeBSD-src-2817a59f503d7cc04787d396baad85b1e9c62dfc.tar.gz |
Back out a portion of the last commit. DFLTPHYS and MAXPHYS cannot
be set by a kernel conf option due to the struct buf structural
dependancy (sizing of b_pages[]) creating a conflict with modules
(which are not compiled with kernel config options overrides).
We'll be able to sysctl these two later on when the buffer subsystem
is revamped.
Diffstat (limited to 'sys/alpha')
-rw-r--r-- | sys/alpha/include/param.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/sys/alpha/include/param.h b/sys/alpha/include/param.h index 2bb660c..c09e30c 100644 --- a/sys/alpha/include/param.h +++ b/sys/alpha/include/param.h @@ -101,13 +101,8 @@ #ifndef BLKDEV_IOSIZE #define BLKDEV_IOSIZE PAGE_SIZE /* default block device I/O size */ #endif - -#ifndef DFLTPHYS #define DFLTPHYS (64 * 1024) /* default max raw I/O transfer size */ -#endif -#ifndef MAXPHYS #define MAXPHYS (128 * 1024) /* max raw I/O transfer size */ -#endif #define CLSIZE 1 #define CLSIZELOG2 0 |