diff options
author | Matthew Dempsky <matthew@cvs.openbsd.org> | 2010-06-29 07:08:08 +0000 |
---|---|---|
committer | Matthew Dempsky <matthew@cvs.openbsd.org> | 2010-06-29 07:08:08 +0000 |
commit | ff72e991ccf71c2f36657ae996b3fb8bd7ff9ddc (patch) | |
tree | fb9942a6e824b342d4cf7263ec7fe4d3431d2648 /sys/scsi | |
parent | ca0a8720b4410f74b15c879b4ff0917b80cefa40 (diff) |
Change st(4) to use the FIFO buf sorting discipline rather than the
default disk-sorting one.
ok krw@
Diffstat (limited to 'sys/scsi')
-rw-r--r-- | sys/scsi/st.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/scsi/st.c b/sys/scsi/st.c index 49efecd5da0..dfbf443282f 100644 --- a/sys/scsi/st.c +++ b/sys/scsi/st.c @@ -1,4 +1,4 @@ -/* $OpenBSD: st.c,v 1.100 2010/06/26 23:24:45 guenther Exp $ */ +/* $OpenBSD: st.c,v 1.101 2010/06/29 07:08:07 matthew Exp $ */ /* $NetBSD: st.c,v 1.71 1997/02/21 23:03:49 thorpej Exp $ */ /* @@ -338,7 +338,7 @@ stattach(struct device *parent, struct device *self, void *aux) &st->sc_xsh); /* Set up the buf queue for this device. */ - st->sc_bufq = bufq_init(BUFQ_DEFAULT); + st->sc_bufq = bufq_init(BUFQ_FIFO); /* Start up with media position unknown. */ st->media_fileno = -1; |