diff options
| author | Scott Long <scottl@FreeBSD.org> | 2000-11-19 23:46:21 +0000 |
|---|---|---|
| committer | Scott Long <scottl@FreeBSD.org> | 2000-11-19 23:46:21 +0000 |
| commit | affec73ebd55c56c16cf821a37f1dec181c454a6 (patch) | |
| tree | 5858c315e7382cd373906b87c248dc45a5b81a42 | |
| parent | 32af0d74f096b04ae54746f22fdc8453acceb141 (diff) | |
Notes
| -rw-r--r-- | sys/dev/aac/aac.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/sys/dev/aac/aac.c b/sys/dev/aac/aac.c index 19b57e90c078..f225430842e4 100644 --- a/sys/dev/aac/aac.c +++ b/sys/dev/aac/aac.c @@ -529,7 +529,10 @@ aac_startio(struct aac_softc *sc) break; /* Set a timeout for this command to be completed by the controller */ - cm->timeout_handle = timeout((timeout_t*)aac_timeout, cm, AAC_CMD_TIMEOUT * hz); + /* Disable this for now until the timeout queue is fixed or the driver + * can watch timeouts itself + * cm->timeout_handle = timeout((timeout_t*)aac_timeout, cm, AAC_CMD_TIMEOUT * hz); + */ /* try to give the command to the controller */ if (aac_start(cm) == EBUSY) { @@ -790,7 +793,10 @@ aac_bio_complete(struct aac_command *cm) AAC_FSAStatus status; /* kill the timeout timer */ - untimeout((timeout_t *)aac_timeout, cm, cm->timeout_handle); + /* Disable this for now until the timeout queue is fixed or the driver + * can watch timeouts itself + * untimeout((timeout_t *)aac_timeout, cm, cm->timeout_handle); + */ /* fetch relevant status and then release the command */ bp = (struct bio *)cm->cm_private; |
