Extended the SEEKWAIT and RECALWAIT somewhat to avoid annoying messages.

This commit is contained in:
Poul-Henning Kamp 1994-11-18 10:18:36 +00:00
parent 3902fd08ed
commit 04b734cf24
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=4618
3 changed files with 9 additions and 9 deletions

View File

@ -40,7 +40,7 @@
* SUCH DAMAGE.
*
* from: @(#)fd.c 7.4 (Berkeley) 5/25/91
* $Id: fd.c,v 1.41 1994/11/08 05:42:10 jkh Exp $
* $Id: fd.c,v 1.42 1994/11/08 06:34:04 ache Exp $
*
*/
@ -1101,7 +1101,7 @@ fdstate(fdcu, fdc)
return(0); /* will return later */
case SEEKWAIT:
/* allow heads to settle */
timeout(fd_pseudointr, (caddr_t)fdcu, hz / 32);
timeout(fd_pseudointr, (caddr_t)fdcu, hz / 16);
fdc->state = SEEKCOMPLETE;
return(0); /* will return later */
case SEEKCOMPLETE : /* SEEK DONE, START DMA */
@ -1303,7 +1303,7 @@ fdstate(fdcu, fdc)
return(0); /* will return later */
case RECALWAIT:
/* allow heads to settle */
timeout(fd_pseudointr, (caddr_t)fdcu, hz / 32);
timeout(fd_pseudointr, (caddr_t)fdcu, hz / 8);
fdc->state = RECALCOMPLETE;
return(0); /* will return later */
case RECALCOMPLETE:

View File

@ -40,7 +40,7 @@
* SUCH DAMAGE.
*
* from: @(#)fd.c 7.4 (Berkeley) 5/25/91
* $Id: fd.c,v 1.41 1994/11/08 05:42:10 jkh Exp $
* $Id: fd.c,v 1.42 1994/11/08 06:34:04 ache Exp $
*
*/
@ -1101,7 +1101,7 @@ fdstate(fdcu, fdc)
return(0); /* will return later */
case SEEKWAIT:
/* allow heads to settle */
timeout(fd_pseudointr, (caddr_t)fdcu, hz / 32);
timeout(fd_pseudointr, (caddr_t)fdcu, hz / 16);
fdc->state = SEEKCOMPLETE;
return(0); /* will return later */
case SEEKCOMPLETE : /* SEEK DONE, START DMA */
@ -1303,7 +1303,7 @@ fdstate(fdcu, fdc)
return(0); /* will return later */
case RECALWAIT:
/* allow heads to settle */
timeout(fd_pseudointr, (caddr_t)fdcu, hz / 32);
timeout(fd_pseudointr, (caddr_t)fdcu, hz / 8);
fdc->state = RECALCOMPLETE;
return(0); /* will return later */
case RECALCOMPLETE:

View File

@ -40,7 +40,7 @@
* SUCH DAMAGE.
*
* from: @(#)fd.c 7.4 (Berkeley) 5/25/91
* $Id: fd.c,v 1.41 1994/11/08 05:42:10 jkh Exp $
* $Id: fd.c,v 1.42 1994/11/08 06:34:04 ache Exp $
*
*/
@ -1101,7 +1101,7 @@ fdstate(fdcu, fdc)
return(0); /* will return later */
case SEEKWAIT:
/* allow heads to settle */
timeout(fd_pseudointr, (caddr_t)fdcu, hz / 32);
timeout(fd_pseudointr, (caddr_t)fdcu, hz / 16);
fdc->state = SEEKCOMPLETE;
return(0); /* will return later */
case SEEKCOMPLETE : /* SEEK DONE, START DMA */
@ -1303,7 +1303,7 @@ fdstate(fdcu, fdc)
return(0); /* will return later */
case RECALWAIT:
/* allow heads to settle */
timeout(fd_pseudointr, (caddr_t)fdcu, hz / 32);
timeout(fd_pseudointr, (caddr_t)fdcu, hz / 8);
fdc->state = RECALCOMPLETE;
return(0); /* will return later */
case RECALCOMPLETE: