Print this page
XXXX introduce drv_sectohz
@@ -1148,11 +1148,11 @@
/*
* start the timeout threads
*/
fptr->fcip_timeout_id = timeout(fcip_timeout, fptr,
- drv_usectohz(1000000));
+ drv_sectohz(1));
mutex_exit(&fptr->fcip_mutex);
mutex_enter(&fcip_global_mutex);
fcip_num_attaching--;
ASSERT(fcip_num_attaching >= 0);
@@ -1258,11 +1258,11 @@
done:
/*
* Restart the timeout thread
*/
fptr->fcip_timeout_id = timeout(fcip_timeout, fptr,
- drv_usectohz(1000000));
+ drv_sectohz(1));
mutex_exit(&fptr->fcip_mutex);
return (rval);
}
@@ -7337,11 +7337,11 @@
* reschedule the timeout thread
*/
mutex_enter(&fptr->fcip_mutex);
fptr->fcip_timeout_id = timeout(fcip_timeout, fptr,
- drv_usectohz(1000000));
+ drv_sectohz(1));
fptr->fcip_flags &= ~(FCIP_IN_TIMEOUT);
mutex_exit(&fptr->fcip_mutex);
}