diff options
author | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2009-06-03 22:09:31 +0000 |
---|---|---|
committer | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2009-06-03 22:09:31 +0000 |
commit | b25274aac4d1fef726702d299f285d361d17febc (patch) | |
tree | bf0a0eecf0269cbaf678c70381c20b040e57ed02 /sys/scsi/cd.h | |
parent | b96794b04ab20a0aba439e48813238555739661d (diff) |
add a flexible buffer queue (bufq) api, based on the never used
one by tedu@. It doesn't do anything smart yet, it just uses
plain old disksort. we also keep the old method of queueing bufs
since some miods have crazy MD drivers that need some love.
ok beck@, art@
tested by many on many archs.
Diffstat (limited to 'sys/scsi/cd.h')
-rw-r--r-- | sys/scsi/cd.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/scsi/cd.h b/sys/scsi/cd.h index 72929119707..e5ef94bcea5 100644 --- a/sys/scsi/cd.h +++ b/sys/scsi/cd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cd.h,v 1.19 2008/07/28 20:58:41 fgsch Exp $ */ +/* $OpenBSD: cd.h,v 1.20 2009/06/03 22:09:30 thib Exp $ */ /* $NetBSD: scsi_cd.h,v 1.6 1996/03/19 03:06:39 mycroft Exp $ */ /* @@ -293,7 +293,6 @@ struct cd_softc { #ifdef CDDA struct cd_parms orig_params; /* filled in when CD-DA mode starts */ #endif - struct buf buf_queue; struct timeout sc_timeout; void *sc_cdpwrhook; /* our power hook */ }; |