Displaying 1 result from an estimated 1 matches for "rushjob".
Did you mean:
run_job
2003 Apr 11
14
PATCH: Forcible delaying of UFS (soft)updates
...45,7 +149,7 @@ time_t dirdelay = 29; /* time to delay
SYSCTL_INT(_kern, OID_AUTO, dirdelay, CTLFLAG_RW, &dirdelay, 0, "");
time_t metadelay = 28; /* time to delay syncing metadata */
SYSCTL_INT(_kern, OID_AUTO, metadelay, CTLFLAG_RW, &metadelay, 0, "");
-static int rushjob; /* number of slots to run ASAP */
+int rushjob; /* number of slots to run ASAP */
static int stat_rush_requests; /* number of times I/O speeded up */
SYSCTL_INT(_debug, OID_AUTO, rush_requests, CTLFLAG_RW, &stat_rush_requests, 0, "");
@@ -177,6 +181,7 @@ vntblinit()
{
de...