MFC r196785:

correct timeout for doing NOL processing; need a ticks-relative value

Approved by:	re (kensmith)
This commit is contained in:
Sam Leffler 2009-09-07 16:33:27 +00:00
parent 264a8db4b0
commit f8083274f0

View File

@ -235,7 +235,7 @@ dfs_timeout(void *arg)
}
if (oldest != now) {
/* arrange to process next channel up for a status change */
callout_schedule(&dfs->nol_timer, oldest + NOL_TIMEOUT);
callout_schedule(&dfs->nol_timer, oldest + NOL_TIMEOUT - now);
}
}