CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2020/07/24 18:48:04
Modified files:
sys/sys : timeout.h
sys/kern : kern_timeout.c
Log message:
timeout(9): remove TIMEOUT_SCHEDULED flag
The TIMEOUT_SCHEDULED flag was added a few months ago to differentiate
between wheel timeouts and new timeouts during softclock(). The
distinction is useful when incrementing the "rescheduled" stat and the
"late" stat.
Now that we have an intermediate queue for new timeouts, timeout_new,
we don't need the flag. The distinction between wheel timeouts and
new timeouts can be made computationally.
Suggested by procter@ several months ago.