Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch - Rename options NEW_BUFQ_STRATEGY -> options BUFQ_...
details: https://anonhg.NetBSD.org/src/rev/8ece362f2707
branches: trunk
changeset: 581898:8ece362f2707
user: tsutsui <tsutsui%NetBSD.org@localhost>
date: Thu Jun 09 14:43:29 2005 +0000
description:
- Rename options NEW_BUFQ_STRATEGY -> options BUFQ_READPRIO.
(still commented out)
- Add (also commented out) options BUFQ_PRIOCSCAN.
Suggested by perry and soda on tech-kern.
Please refer options(4) for details for these options.
diffstat:
sys/arch/acorn26/conf/GENERIC | 5 +++--
sys/arch/acorn32/conf/EB7500ATX | 7 ++++---
sys/arch/acorn32/conf/GENERIC | 7 ++++---
sys/arch/alpha/conf/ALPHA | 7 ++++---
sys/arch/alpha/conf/GENERIC | 5 +++--
sys/arch/amd64/conf/GENERIC | 7 ++++---
sys/arch/amd64/conf/INSTALL | 7 ++++---
sys/arch/amd64/conf/INSTALL_ACPI | 7 ++++---
sys/arch/amiga/conf/GENERIC.in | 7 ++++---
sys/arch/arc/conf/GENERIC | 7 ++++---
sys/arch/arc/conf/RAMDISK | 7 ++++---
sys/arch/arc/conf/RPC44 | 7 ++++---
sys/arch/atari/conf/GENERIC.in | 5 +++--
sys/arch/bebox/conf/GENERIC | 7 ++++---
sys/arch/cats/conf/GENERIC | 5 +++--
sys/arch/cesfic/conf/GENERIC | 5 +++--
sys/arch/cobalt/conf/GENERIC | 7 ++++---
sys/arch/cobalt/conf/INSTALL | 7 ++++---
sys/arch/evbppc/conf/EXPLORA451 | 5 +++--
sys/arch/hp300/conf/GENERIC | 7 ++++---
sys/arch/hp700/conf/GENERIC | 7 ++++---
sys/arch/hpcsh/conf/GENERIC | 5 +++--
sys/arch/i386/conf/GENERIC | 7 ++++---
sys/arch/i386/conf/GENERIC.MPACPI | 7 ++++---
sys/arch/i386/conf/VIRTUALPC | 7 ++++---
sys/arch/luna68k/conf/GENERIC | 7 ++++---
sys/arch/mac68k/conf/GENERIC | 7 ++++---
sys/arch/macppc/conf/GENERIC | 7 ++++---
sys/arch/mipsco/conf/GENERIC | 5 +++--
sys/arch/mvme68k/conf/GENERIC | 7 ++++---
sys/arch/netwinder/conf/GENERIC | 5 +++--
sys/arch/news68k/conf/GENERIC | 7 ++++---
sys/arch/news68k/conf/GENERIC_TINY | 7 ++++---
sys/arch/news68k/conf/LIBERO | 5 +++--
sys/arch/newsmips/conf/GENERIC | 7 ++++---
sys/arch/next68k/conf/GENERIC | 7 ++++---
sys/arch/pmax/conf/GENERIC | 7 ++++---
sys/arch/pmax/conf/WSCONS | 7 ++++---
sys/arch/prep/conf/GENERIC | 7 ++++---
sys/arch/sgimips/conf/GENERIC32_IP2x | 7 ++++---
sys/arch/sgimips/conf/GENERIC32_IP3x | 7 ++++---
sys/arch/sparc/conf/GENERIC | 7 ++++---
sys/arch/sparc/conf/MRCOFFEE | 7 ++++---
sys/arch/sparc64/conf/GENERIC32 | 7 ++++---
sys/arch/sun2/conf/GENERIC | 7 ++++---
sys/arch/sun3/conf/GENERIC | 7 ++++---
sys/arch/sun3/conf/GENERIC3X | 5 +++--
sys/arch/vax/conf/GENERIC | 7 ++++---
sys/arch/x68k/conf/GENERIC | 7 ++++---
49 files changed, 185 insertions(+), 136 deletions(-)
diffs (truncated from 1275 to 300 lines):
diff -r 390aa3fb8d49 -r 8ece362f2707 sys/arch/acorn26/conf/GENERIC
--- a/sys/arch/acorn26/conf/GENERIC Thu Jun 09 13:49:15 2005 +0000
+++ b/sys/arch/acorn26/conf/GENERIC Thu Jun 09 14:43:29 2005 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.28 2005/02/18 21:05:50 dsl Exp $
+# $NetBSD: GENERIC,v 1.29 2005/06/09 14:43:29 tsutsui Exp $
#
# GENERIC machine description file
#
@@ -140,7 +140,8 @@
# Enable experimental buffer queue strategy for better responsiveness under
# high disk I/O load. Use it with caution - it's not proven to be stable yet.
-#options NEW_BUFQ_STRATEGY
+#options BUFQ_READPRIO
+#options BUFQ_PRIOCSCAN
# Disable kernel security.
#options INSECURE
diff -r 390aa3fb8d49 -r 8ece362f2707 sys/arch/acorn32/conf/EB7500ATX
--- a/sys/arch/acorn32/conf/EB7500ATX Thu Jun 09 13:49:15 2005 +0000
+++ b/sys/arch/acorn32/conf/EB7500ATX Thu Jun 09 14:43:29 2005 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: EB7500ATX,v 1.14 2005/03/11 06:51:48 matt Exp $
+# $NetBSD: EB7500ATX,v 1.15 2005/06/09 14:43:29 tsutsui Exp $
#
# EB7500ATX --- NetBSD/acorn32 complete configuration
#
@@ -22,7 +22,7 @@
options INCLUDE_CONFIG_FILE # embed config file in kernel binary
-#ident "EB7500ATX-$Revision: 1.14 $"
+#ident "EB7500ATX-$Revision: 1.15 $"
# estimated number of users
maxusers 32
@@ -149,7 +149,8 @@
# Enable experimental buffer queue strategy for better responsiveness under
# high disk I/O load. Use it with caution - it's not proven to be stable yet.
-#options NEW_BUFQ_STRATEGY
+#options BUFQ_READPRIO
+#options BUFQ_PRIOCSCAN
# Development and Debugging options
diff -r 390aa3fb8d49 -r 8ece362f2707 sys/arch/acorn32/conf/GENERIC
--- a/sys/arch/acorn32/conf/GENERIC Thu Jun 09 13:49:15 2005 +0000
+++ b/sys/arch/acorn32/conf/GENERIC Thu Jun 09 14:43:29 2005 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.52 2005/02/18 21:05:50 dsl Exp $
+# $NetBSD: GENERIC,v 1.53 2005/06/09 14:43:29 tsutsui Exp $
#
# GENERIC --- NetBSD/acorn32 complete configuration
#
@@ -22,7 +22,7 @@
options INCLUDE_CONFIG_FILE # embed config file in kernel binary
-#ident "GENERIC-$Revision: 1.52 $"
+#ident "GENERIC-$Revision: 1.53 $"
# estimated number of users
maxusers 32
@@ -154,7 +154,8 @@
# Enable experimental buffer queue strategy for better responsiveness under
# high disk I/O load. Use it with caution - it's not proven to be stable yet.
-#options NEW_BUFQ_STRATEGY
+#options BUFQ_READPRIO
+#options BUFQ_PRIOCSCAN
# Development and Debugging options
diff -r 390aa3fb8d49 -r 8ece362f2707 sys/arch/alpha/conf/ALPHA
--- a/sys/arch/alpha/conf/ALPHA Thu Jun 09 13:49:15 2005 +0000
+++ b/sys/arch/alpha/conf/ALPHA Thu Jun 09 14:43:29 2005 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: ALPHA,v 1.205 2005/05/31 22:23:52 tron Exp $
+# $NetBSD: ALPHA,v 1.206 2005/06/09 14:43:29 tsutsui Exp $
#
# Alpha kernel with all the options you'd want, and more.
@@ -6,7 +6,7 @@
options INCLUDE_CONFIG_FILE # embed config file in kernel binary
-ident "ALPHA-$Revision: 1.205 $"
+ident "ALPHA-$Revision: 1.206 $"
maxusers 32
@@ -38,7 +38,8 @@
# Enable experimental buffer queue strategy for better responsiveness under
# high disk I/O load. Use it with caution - it's not proven to be stable yet.
-#options NEW_BUFQ_STRATEGY
+#options BUFQ_READPRIO
+#options BUFQ_PRIOCSCAN
# Diagnostic/debugging support options
options DIAGNOSTIC # Cheap kernel consistency checks
diff -r 390aa3fb8d49 -r 8ece362f2707 sys/arch/alpha/conf/GENERIC
--- a/sys/arch/alpha/conf/GENERIC Thu Jun 09 13:49:15 2005 +0000
+++ b/sys/arch/alpha/conf/GENERIC Thu Jun 09 14:43:29 2005 +0000
@@ -22,7 +22,7 @@
options INCLUDE_CONFIG_FILE # embed config file in kernel binary
-#ident "GENERIC-$Revision: 1.264 $"
+#ident "GENERIC-$Revision: 1.265 $"
maxusers 32
@@ -54,7 +54,8 @@
# Enable experimental buffer queue strategy for better responsiveness under
# high disk I/O load. Use it with caution - it's not proven to be stable yet.
-#options NEW_BUFQ_STRATEGY
+#options BUFQ_READPRIO
+#options BUFQ_PRIOCSCAN
# Diagnostic/debugging support options
options DIAGNOSTIC # Cheap kernel consistency checks
diff -r 390aa3fb8d49 -r 8ece362f2707 sys/arch/amd64/conf/GENERIC
--- a/sys/arch/amd64/conf/GENERIC Thu Jun 09 13:49:15 2005 +0000
+++ b/sys/arch/amd64/conf/GENERIC Thu Jun 09 14:43:29 2005 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.46 2005/04/15 17:27:21 itohy Exp $
+# $NetBSD: GENERIC,v 1.47 2005/06/09 14:43:29 tsutsui Exp $
#
# GENERIC machine description file
#
@@ -22,7 +22,7 @@
options INCLUDE_CONFIG_FILE # embed config file in kernel binary
-#ident "GENERIC-$Revision: 1.46 $"
+#ident "GENERIC-$Revision: 1.47 $"
maxusers 32 # estimated number of users
@@ -72,7 +72,8 @@
# Enable experimental buffer queue strategy for better responsiveness under
# high disk I/O load. Use it with caution - it's not proven to be stable yet.
-#options NEW_BUFQ_STRATEGY
+#options BUFQ_READPRIO
+#options BUFQ_PRIOCSCAN
# Diagnostic/debugging support options
#options DIAGNOSTIC # expensive kernel consistency checks
diff -r 390aa3fb8d49 -r 8ece362f2707 sys/arch/amd64/conf/INSTALL
--- a/sys/arch/amd64/conf/INSTALL Thu Jun 09 13:49:15 2005 +0000
+++ b/sys/arch/amd64/conf/INSTALL Thu Jun 09 14:43:29 2005 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: INSTALL,v 1.31 2005/04/15 17:27:21 itohy Exp $
+# $NetBSD: INSTALL,v 1.32 2005/06/09 14:43:29 tsutsui Exp $
#
# GENERIC machine description file
#
@@ -20,7 +20,7 @@
include "arch/amd64/conf/std.amd64"
-#ident "INSTALL-$Revision: 1.31 $"
+#ident "INSTALL-$Revision: 1.32 $"
maxusers 32 # estimated number of users
@@ -53,7 +53,8 @@
# Enable experimental buffer queue strategy for better responsiveness under
# high disk I/O load. Use it with caution - it's not proven to be stable yet.
-#options NEW_BUFQ_STRATEGY
+#options BUFQ_READPRIO
+#options BUFQ_PRIOCSCAN
# Diagnostic/debugging support options
#options DIAGNOSTIC # expensive kernel consistency checks
diff -r 390aa3fb8d49 -r 8ece362f2707 sys/arch/amd64/conf/INSTALL_ACPI
--- a/sys/arch/amd64/conf/INSTALL_ACPI Thu Jun 09 13:49:15 2005 +0000
+++ b/sys/arch/amd64/conf/INSTALL_ACPI Thu Jun 09 14:43:29 2005 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: INSTALL_ACPI,v 1.22 2005/04/15 17:27:21 itohy Exp $
+# $NetBSD: INSTALL_ACPI,v 1.23 2005/06/09 14:43:29 tsutsui Exp $
#
# GENERIC machine description file
#
@@ -20,7 +20,7 @@
include "arch/amd64/conf/std.amd64"
-#ident "INSTALL-$Revision: 1.22 $"
+#ident "INSTALL-$Revision: 1.23 $"
maxusers 32 # estimated number of users
@@ -53,7 +53,8 @@
# Enable experimental buffer queue strategy for better responsiveness under
# high disk I/O load. Use it with caution - it's not proven to be stable yet.
-#options NEW_BUFQ_STRATEGY
+#options BUFQ_READPRIO
+#options BUFQ_PRIOCSCAN
# Diagnostic/debugging support options
#options DIAGNOSTIC # expensive kernel consistency checks
diff -r 390aa3fb8d49 -r 8ece362f2707 sys/arch/amiga/conf/GENERIC.in
--- a/sys/arch/amiga/conf/GENERIC.in Thu Jun 09 13:49:15 2005 +0000
+++ b/sys/arch/amiga/conf/GENERIC.in Thu Jun 09 14:43:29 2005 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC.in,v 1.35 2005/06/01 18:55:08 jandberg Exp $
+# $NetBSD: GENERIC.in,v 1.36 2005/06/09 14:43:30 tsutsui Exp $
#
# GENERIC machine description file
#
@@ -56,7 +56,7 @@
options INCLUDE_CONFIG_FILE # embed config file in kernel binary
-#ident "GENERIC-$Revision: 1.35 $"
+#ident "GENERIC-$Revision: 1.36 $"
m4_ifdef(`INSTALL_CONFIGURATION', `m4_dnl
makeoptions COPTS="-Os"
@@ -242,7 +242,8 @@
# Enable experimental buffer queue strategy for better responsiveness under
# high disk I/O load. Use it with caution - it's not proven to be stable yet.
-#options NEW_BUFQ_STRATEGY
+#options BUFQ_READPRIO
+#options BUFQ_PRIOCSCAN
#
# Misc. debugging options
diff -r 390aa3fb8d49 -r 8ece362f2707 sys/arch/arc/conf/GENERIC
--- a/sys/arch/arc/conf/GENERIC Thu Jun 09 13:49:15 2005 +0000
+++ b/sys/arch/arc/conf/GENERIC Thu Jun 09 14:43:29 2005 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: GENERIC,v 1.114 2005/05/31 22:23:52 tron Exp $
+# $NetBSD: GENERIC,v 1.115 2005/06/09 14:43:30 tsutsui Exp $
#
# GENERIC machine description file
#
@@ -22,7 +22,7 @@
options INCLUDE_CONFIG_FILE # embed config file in kernel binary
-#ident "GENERIC-$Revision: 1.114 $"
+#ident "GENERIC-$Revision: 1.115 $"
maxusers 32 # estimated number of users
@@ -65,7 +65,8 @@
# Enable experimental buffer queue strategy for better responsiveness under
# high disk I/O load. Use it with caution - it's not proven to be stable yet.
-#options NEW_BUFQ_STRATEGY
+#options BUFQ_READPRIO
+#options BUFQ_PRIOCSCAN
# Diagnostic/debugging support options
options DIAGNOSTIC # cheap kernel consistency checks
diff -r 390aa3fb8d49 -r 8ece362f2707 sys/arch/arc/conf/RAMDISK
--- a/sys/arch/arc/conf/RAMDISK Thu Jun 09 13:49:15 2005 +0000
+++ b/sys/arch/arc/conf/RAMDISK Thu Jun 09 14:43:29 2005 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: RAMDISK,v 1.57 2005/05/31 22:23:52 tron Exp $
+# $NetBSD: RAMDISK,v 1.58 2005/06/09 14:43:30 tsutsui Exp $
#
# memory disk based configuration file for MIPS R4x00 ARC Systems
#
@@ -7,7 +7,7 @@
#options INCLUDE_CONFIG_FILE # embed config file in kernel binary
-#ident "GENERIC-$Revision: 1.57 $"
+#ident "GENERIC-$Revision: 1.58 $"
maxusers 32 # estimated number of users
@@ -49,7 +49,8 @@
# Enable experimental buffer queue strategy for better responsiveness under
# high disk I/O load. Use it with caution - it's not proven to be stable yet.
-#options NEW_BUFQ_STRATEGY
+#options BUFQ_READPRIO
+#options BUFQ_PRIOCSCAN
# Diagnostic/debugging support options
#options DIAGNOSTIC # cheap kernel consistency checks
diff -r 390aa3fb8d49 -r 8ece362f2707 sys/arch/arc/conf/RPC44
--- a/sys/arch/arc/conf/RPC44 Thu Jun 09 13:49:15 2005 +0000
+++ b/sys/arch/arc/conf/RPC44 Thu Jun 09 14:43:29 2005 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: RPC44,v 1.14 2005/02/18 21:05:51 dsl Exp $
+# $NetBSD: RPC44,v 1.15 2005/06/09 14:43:30 tsutsui Exp $
#
Home |
Main Index |
Thread Index |
Old Index