Lines Matching defs:timeout
31 * Added timeout module option to override default
93 * Watchdog timeout configuration values:
192 static int timeout = 27;
197 module_param(timeout, int, 0);
198 MODULE_PARM_DESC(timeout, "Index into timeout table (0-63) (default=27 (60s))");
216 /* Set timeout multiplier */
330 if (timeout < 0 || timeout > 63) {
331 pr_err("Invalid timeout index (must be 0-63)\n");
361 wd_margin = wd_times[timeout][0];
362 wd_multiplier = wd_times[timeout][1];