diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1998-01-25 09:39:20 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1998-01-25 09:39:20 +0000 |
commit | 422d85dcbf85dceecb5b69443eb4f3dcef15212e (patch) | |
tree | cf368dfd5f23cfba655549b4ff20bcbf92ab79c0 | |
parent | b29f00e9c92ef59258a036aa51c21ab5cc6a145c (diff) |
Disable the new buffer policy for now
-rw-r--r-- | sys/dev/ccd.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/dev/ccd.c b/sys/dev/ccd.c index b1dd42835f9..7c995d9ef07 100644 --- a/sys/dev/ccd.c +++ b/sys/dev/ccd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ccd.c,v 1.31 1998/01/25 09:22:28 niklas Exp $ */ +/* $OpenBSD: ccd.c,v 1.32 1998/01/25 09:39:19 niklas Exp $ */ /* $NetBSD: ccd.c,v 1.33 1996/05/05 04:21:14 thorpej Exp $ */ /*- @@ -1202,6 +1202,9 @@ ccdioctl(dev, cmd, data, flag, p) ccd.ccd_interleave = ccio->ccio_ileave; ccd.ccd_flags = ccio->ccio_flags & CCDF_USERMASK; + /* XXX the new code is unstable yet */ + ccd.ccd_flags |= CCDF_OLD; + /* * Interleaving which is not a multiple of the click size * must use the old I/O code (by design), as must mirror |