summaryrefslogtreecommitdiffstats
path: root/sys/scsi
diff options
context:
space:
mode:
authorwollman <wollman@FreeBSD.org>1996-01-05 20:12:53 +0000
committerwollman <wollman@FreeBSD.org>1996-01-05 20:12:53 +0000
commit6430272759633c6a6de434bc2bab68356801b788 (patch)
tree4458364e2aef24d7ff62d57b3a15dd2e4351245d /sys/scsi
parenta37f9619e56b405232d5dcd14116e716283c690b (diff)
downloadFreeBSD-src-6430272759633c6a6de434bc2bab68356801b788.zip
FreeBSD-src-6430272759633c6a6de434bc2bab68356801b788.tar.gz
Convert BOUNCE_BUFFERS and BOUNCEPAGES to new option scheme.
Diffstat (limited to 'sys/scsi')
-rw-r--r--sys/scsi/cd.c4
-rw-r--r--sys/scsi/od.c4
-rw-r--r--sys/scsi/pt.c4
-rw-r--r--sys/scsi/scsi_base.c4
-rw-r--r--sys/scsi/scsi_ioctl.c5
-rw-r--r--sys/scsi/sctarg.c4
-rw-r--r--sys/scsi/sd.c4
-rw-r--r--sys/scsi/st.c4
-rw-r--r--sys/scsi/worm.c4
9 files changed, 28 insertions, 9 deletions
diff --git a/sys/scsi/cd.c b/sys/scsi/cd.c
index 0bc4cb9..0caead8 100644
--- a/sys/scsi/cd.c
+++ b/sys/scsi/cd.c
@@ -14,9 +14,11 @@
*
* Ported to run under 386BSD by Julian Elischer (julian@tfs.com) Sept 1992
*
- * $Id: cd.c,v 1.54 1995/12/20 12:02:43 dufault Exp $
+ * $Id: cd.c,v 1.55 1995/12/30 13:56:28 joerg Exp $
*/
+#include "opt_bounce.h"
+
#define SPLCD splbio
#define ESUCCESS 0
#include <sys/types.h>
diff --git a/sys/scsi/od.c b/sys/scsi/od.c
index 3a1e951..2afcc56 100644
--- a/sys/scsi/od.c
+++ b/sys/scsi/od.c
@@ -28,7 +28,7 @@
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: od.c,v 1.9 1995/12/10 20:19:32 bde Exp $
+ * $Id: od.c,v 1.10 1995/12/14 09:54:22 phk Exp $
*/
/*
@@ -36,6 +36,8 @@
* 1. Add optical disk specific ioctl functions, such as eject etc.
*/
+#include "opt_bounce.h"
+
#define SPLOD splbio
#include <sys/types.h>
#include <sys/param.h>
diff --git a/sys/scsi/pt.c b/sys/scsi/pt.c
index 7f459a1..453060d 100644
--- a/sys/scsi/pt.c
+++ b/sys/scsi/pt.c
@@ -37,7 +37,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: pt.c,v 1.11 1995/12/14 09:54:24 phk Exp $
+ * $Id: pt.c,v 1.12 1995/12/14 19:51:13 bde Exp $
*/
/*
@@ -46,6 +46,8 @@
* base behavior in scsi_driver.c
*/
+#include "opt_bounce.h"
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/buf.h>
diff --git a/sys/scsi/scsi_base.c b/sys/scsi/scsi_base.c
index 1287619..20bcc30 100644
--- a/sys/scsi/scsi_base.c
+++ b/sys/scsi/scsi_base.c
@@ -8,9 +8,11 @@
* file.
*
* Written by Julian Elischer (julian@dialix.oz.au)
- * $Id: scsi_base.c,v 1.33 1995/12/14 09:54:26 phk Exp $
+ * $Id: scsi_base.c,v 1.34 1995/12/17 21:23:36 phk Exp $
*/
+#include "opt_bounce.h"
+
#define SPLSD splbio
#define ESUCCESS 0
#include <sys/types.h>
diff --git a/sys/scsi/scsi_ioctl.c b/sys/scsi/scsi_ioctl.c
index a708de9..50aa65c 100644
--- a/sys/scsi/scsi_ioctl.c
+++ b/sys/scsi/scsi_ioctl.c
@@ -36,10 +36,13 @@
* SUCH DAMAGE.
*End copyright
*
- * $Id: scsi_ioctl.c,v 1.17 1995/11/10 14:54:16 davidg Exp $
+ * $Id: scsi_ioctl.c,v 1.18 1995/12/14 09:54:27 phk Exp $
*
*
*/
+
+#include "opt_bounce.h"
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/errno.h>
diff --git a/sys/scsi/sctarg.c b/sys/scsi/sctarg.c
index 1b60d4c..4797d98 100644
--- a/sys/scsi/sctarg.c
+++ b/sys/scsi/sctarg.c
@@ -37,7 +37,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: sctarg.c,v 1.11 1995/12/14 09:54:32 phk Exp $
+ * $Id: sctarg.c,v 1.12 1995/12/14 19:51:15 bde Exp $
*/
/*
@@ -46,6 +46,8 @@
* base behavior in scsi_driver.c
*/
+#include "opt_bounce.h"
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/buf.h>
diff --git a/sys/scsi/sd.c b/sys/scsi/sd.c
index 1368ff0..495ac8a 100644
--- a/sys/scsi/sd.c
+++ b/sys/scsi/sd.c
@@ -14,9 +14,11 @@
*
* Ported to run under 386BSD by Julian Elischer (julian@dialix.oz.au) Sept 1992
*
- * $Id: sd.c,v 1.81 1995/12/11 05:02:52 dyson Exp $
+ * $Id: sd.c,v 1.82 1995/12/14 19:38:40 bde Exp $
*/
+#include "opt_bounce.h"
+
#define SPLSD splbio
#include <sys/param.h>
#include <sys/kernel.h>
diff --git a/sys/scsi/st.c b/sys/scsi/st.c
index 1410373..4bfe3e6 100644
--- a/sys/scsi/st.c
+++ b/sys/scsi/st.c
@@ -12,7 +12,7 @@
* on the understanding that TFS is not responsible for the correct
* functioning of this software in any circumstances.
*
- * $Id: st.c,v 1.54 1995/12/10 19:52:59 bde Exp $
+ * $Id: st.c,v 1.55 1995/12/14 09:54:33 phk Exp $
*/
/*
@@ -27,6 +27,8 @@
*
*/
+#include "opt_bounce.h"
+
#include <sys/types.h>
#include <sys/param.h>
diff --git a/sys/scsi/worm.c b/sys/scsi/worm.c
index 4e80071..3486876 100644
--- a/sys/scsi/worm.c
+++ b/sys/scsi/worm.c
@@ -37,7 +37,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: worm.c,v 1.16 1995/12/14 09:54:35 phk Exp $
+ * $Id: worm.c,v 1.17 1996/01/02 15:44:00 joerg Exp $
*/
/* XXX This is PRELIMINARY.
@@ -51,6 +51,8 @@
* "scsi_driver" and use common code for all devices.
*/
+#include "opt_bounce.h"
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/buf.h>
OpenPOWER on IntegriCloud