diff options
| author | bouyer <bouyer@NetBSD.org> | 1999-04-04 12:20:48 +0000 |
|---|---|---|
| committer | bouyer <bouyer@NetBSD.org> | 1999-04-04 12:20:48 +0000 |
| commit | bf88fc82eb99adefbce1208e8b3ca85e1a046b94 (patch) | |
| tree | 3ab01856773d1da1345546b7da1c0e1e45941540 /sys/dev | |
| parent | f7a019c61a124bb72d115bdda869c57be06a88e1 (diff) | |
Adjust timeout for 'ielem' to match the comment: 5 mn (not 5s) per element +
10mn initial.
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/scsipi/ch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/scsipi/ch.c b/sys/dev/scsipi/ch.c index 6ac88bba5bc..81df6821f7b 100644 --- a/sys/dev/scsipi/ch.c +++ b/sys/dev/scsipi/ch.c @@ -1,4 +1,4 @@ -/* $NetBSD: ch.c,v 1.37 1998/12/17 22:28:07 gibbs Exp $ */ +/* $NetBSD: ch.c,v 1.38 1999/04/04 12:20:48 bouyer Exp $ */ /* * Copyright (c) 1996, 1997, 1998 Jason R. Thorpe <thorpej@and.com> @@ -650,7 +650,7 @@ ch_ielem(sc) sc->sc_counts[CHET_ST] + sc->sc_counts[CHET_IE] + sc->sc_counts[CHET_DT]; - tmo *= 5 * 1000; + tmo *= 5 * 60 * 1000; tmo += (10 * 60 * 1000); return (scsipi_command(sc->sc_link, |
