diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2007-03-13 11:20:58 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2007-03-13 11:20:58 +0000 |
commit | 6e592be0b3aa6e8ddbd46156d223159c7636d325 (patch) | |
tree | 012dfcc25ec17a7023328fbd10e1757ff5077efb /sys/dev/ata/atascsi.c | |
parent | 7621b06282fd49a54fa2e5552135688735e63a4e (diff) |
add timeouts on ata_xfers
Diffstat (limited to 'sys/dev/ata/atascsi.c')
-rw-r--r-- | sys/dev/ata/atascsi.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/ata/atascsi.c b/sys/dev/ata/atascsi.c index 323263448a2..a3e3e3b7185 100644 --- a/sys/dev/ata/atascsi.c +++ b/sys/dev/ata/atascsi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: atascsi.c,v 1.14 2007/03/12 00:35:15 dlg Exp $ */ +/* $OpenBSD: atascsi.c,v 1.15 2007/03/13 11:20:57 dlg Exp $ */ /* * Copyright (c) 2007 David Gwynne <dlg@openbsd.org> @@ -394,6 +394,7 @@ atascsi_disk_inq(struct scsi_xfer *xs) return (atascsi_stuffup(xs)); xa->complete = atascsi_disk_inq_done; + xa->timeout = xs->timeout; xa->atascsi_private = xs; if (xs->flags & SCSI_POLL) xa->flags |= ATA_F_POLL; @@ -459,6 +460,7 @@ atascsi_disk_capacity(struct scsi_xfer *xs) return (atascsi_stuffup(xs)); xa->complete = atascsi_disk_capacity_done; + xa->timeout = xs->timeout; xa->atascsi_private = xs; if (xs->flags & SCSI_POLL) xa->flags |= ATA_F_POLL; |