summaryrefslogtreecommitdiff
path: root/sys/scsi/sdvar.h
diff options
context:
space:
mode:
authorThordur I. Bjornsson <thib@cvs.openbsd.org>2009-06-03 22:09:31 +0000
committerThordur I. Bjornsson <thib@cvs.openbsd.org>2009-06-03 22:09:31 +0000
commitb25274aac4d1fef726702d299f285d361d17febc (patch)
treebf0a0eecf0269cbaf678c70381c20b040e57ed02 /sys/scsi/sdvar.h
parentb96794b04ab20a0aba439e48813238555739661d (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/sdvar.h')
-rw-r--r--sys/scsi/sdvar.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/scsi/sdvar.h b/sys/scsi/sdvar.h
index ba0519634d0..2498b15edac 100644
--- a/sys/scsi/sdvar.h
+++ b/sys/scsi/sdvar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: sdvar.h,v 1.16 2008/11/10 18:04:41 deraadt Exp $ */
+/* $OpenBSD: sdvar.h,v 1.17 2009/06/03 22:09:30 thib Exp $ */
/* $NetBSD: sdvar.h,v 1.7 1998/08/17 00:49:03 mycroft Exp $ */
/*-
@@ -69,7 +69,6 @@ struct sd_softc {
u_long rot_rate; /* rotational rate, in RPM */
daddr64_t disksize; /* total number sectors */
} params;
- struct buf buf_queue;
void *sc_sdhook; /* our shutdown hook */
struct timeout sc_timeout;
};