aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Dillon <dillon@FreeBSD.org>1999-09-22 05:48:31 +0000
committerMatthew Dillon <dillon@FreeBSD.org>1999-09-22 05:48:31 +0000
commit8b22cebb2cb8971c882263b93898e6be3d196b99 (patch)
tree758b26a29d5a49db7e0b7c73899a1f04ce29dc37
parent92e13d2a9cb5fc738ea4562b101b0386e3e7537d (diff)
Notes
-rw-r--r--sys/alpha/include/param.h5
-rw-r--r--sys/conf/NOTES13
-rw-r--r--sys/conf/options2
-rw-r--r--sys/i386/conf/LINT13
-rw-r--r--sys/i386/conf/NOTES13
-rw-r--r--sys/i386/include/param.h4
6 files changed, 3 insertions, 47 deletions
diff --git a/sys/alpha/include/param.h b/sys/alpha/include/param.h
index 2bb660ca4cb7..c09e30c05321 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
diff --git a/sys/conf/NOTES b/sys/conf/NOTES
index 069b10f554be..81e4c88af73a 100644
--- a/sys/conf/NOTES
+++ b/sys/conf/NOTES
@@ -60,20 +60,9 @@ options DFLDSIZ="(256*1024*1024)"
# BLKDEV_IOSIZE sets the default block size used in user block
# device I/O. Note that this value will be overriden by the label
# when specifying a block device from a label with a non-0
-# partition blocksize
-#
-# DFLTPHYS is the default maximum physical I/O transaction size
-# and is used mostly by the clustering code. It must be a
-# multiple of the system page size.
-#
-# MAXPHYS is the absolute maximum physical I/O transaction size.
-# It must be a multiple of the system page size.
-#
-# In general you should not modify either DFLTPHYS or MAXPHYS.
+# partition blocksize. The default is PAGE_SIZE.
#
options BLKDEV_IOSIZE=8192
-options DFLTPHYS="(64*1024)"
-options MAXPHYS="(128*1024)"
# Options for the VM subsystem
#options PQ_NOOPT # No coloring
diff --git a/sys/conf/options b/sys/conf/options
index 3384d3789b53..56bd897e57c7 100644
--- a/sys/conf/options
+++ b/sys/conf/options
@@ -289,8 +289,6 @@ INVARIANTS opt_global.h
SIMPLELOCK_DEBUG opt_global.h
VFS_BIO_DEBUG opt_global.h
BLKDEV_IOSIZE opt_global.h
-DFLTPHYS opt_global.h
-MAXPHYS opt_global.h
# These are VM related options
VM_KMEM_SIZE opt_vm.h
diff --git a/sys/i386/conf/LINT b/sys/i386/conf/LINT
index 069b10f554be..81e4c88af73a 100644
--- a/sys/i386/conf/LINT
+++ b/sys/i386/conf/LINT
@@ -60,20 +60,9 @@ options DFLDSIZ="(256*1024*1024)"
# BLKDEV_IOSIZE sets the default block size used in user block
# device I/O. Note that this value will be overriden by the label
# when specifying a block device from a label with a non-0
-# partition blocksize
-#
-# DFLTPHYS is the default maximum physical I/O transaction size
-# and is used mostly by the clustering code. It must be a
-# multiple of the system page size.
-#
-# MAXPHYS is the absolute maximum physical I/O transaction size.
-# It must be a multiple of the system page size.
-#
-# In general you should not modify either DFLTPHYS or MAXPHYS.
+# partition blocksize. The default is PAGE_SIZE.
#
options BLKDEV_IOSIZE=8192
-options DFLTPHYS="(64*1024)"
-options MAXPHYS="(128*1024)"
# Options for the VM subsystem
#options PQ_NOOPT # No coloring
diff --git a/sys/i386/conf/NOTES b/sys/i386/conf/NOTES
index 069b10f554be..81e4c88af73a 100644
--- a/sys/i386/conf/NOTES
+++ b/sys/i386/conf/NOTES
@@ -60,20 +60,9 @@ options DFLDSIZ="(256*1024*1024)"
# BLKDEV_IOSIZE sets the default block size used in user block
# device I/O. Note that this value will be overriden by the label
# when specifying a block device from a label with a non-0
-# partition blocksize
-#
-# DFLTPHYS is the default maximum physical I/O transaction size
-# and is used mostly by the clustering code. It must be a
-# multiple of the system page size.
-#
-# MAXPHYS is the absolute maximum physical I/O transaction size.
-# It must be a multiple of the system page size.
-#
-# In general you should not modify either DFLTPHYS or MAXPHYS.
+# partition blocksize. The default is PAGE_SIZE.
#
options BLKDEV_IOSIZE=8192
-options DFLTPHYS="(64*1024)"
-options MAXPHYS="(128*1024)"
# Options for the VM subsystem
#options PQ_NOOPT # No coloring
diff --git a/sys/i386/include/param.h b/sys/i386/include/param.h
index 0bd98e4e63b3..3274938be55f 100644
--- a/sys/i386/include/param.h
+++ b/sys/i386/include/param.h
@@ -94,12 +94,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 IOPAGES 2 /* pages of i/o permission bitmap */
#define UPAGES 2 /* pages of u-area */