aboutsummaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorMike Smith <msmith@FreeBSD.org>2000-11-03 16:11:05 +0000
committerMike Smith <msmith@FreeBSD.org>2000-11-03 16:11:05 +0000
commit76ba114c80622c79a85e1919ae194202b8758313 (patch)
treeec2541472bff098da4c377d14c0668a553d49116 /sys/dev
parentc6e77fea5455fbaec8403cf54ed1413253e65487 (diff)
Notes
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/twe/twe.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/twe/twe.c b/sys/dev/twe/twe.c
index c9205dd00099..53075abe50aa 100644
--- a/sys/dev/twe/twe.c
+++ b/sys/dev/twe/twe.c
@@ -831,8 +831,10 @@ twe_startio(struct twe_softc *sc)
if ((bp = twe_dequeue_bio(sc)) == NULL)
break;
/* get a command */
- if (twe_get_request(sc, &tr))
+ if (twe_get_request(sc, &tr)) {
+ twe_enqueue_bio(sc, bp);
break;
+ }
/* connect the bio to the command */
tr->tr_complete = twe_completeio;