The branch main has been updated by mav: URL: https://cgit.FreeBSD.org/src/commit/?id=706b1a5724d668a8752ac89cd67113e4c6917d54
commit 706b1a5724d668a8752ac89cd67113e4c6917d54 Author: Alexander Motin <[email protected]> AuthorDate: 2021-09-01 03:47:51 +0000 Commit: Alexander Motin <[email protected]> CommitDate: 2021-09-01 03:50:35 +0000 Align taskqueue_enqueue_timeout() to hardclock. It is done for all other KPIs using HZ, but was missed here. MFC after: 2 weeks --- sys/kern/subr_taskqueue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/kern/subr_taskqueue.c b/sys/kern/subr_taskqueue.c index 0f1503c7f7c7..061361cc06d7 100644 --- a/sys/kern/subr_taskqueue.c +++ b/sys/kern/subr_taskqueue.c @@ -343,7 +343,7 @@ taskqueue_enqueue_timeout(struct taskqueue *queue, { return (taskqueue_enqueue_timeout_sbt(queue, ttask, ticks * tick_sbt, - 0, 0)); + 0, C_HARDCLOCK)); } static void _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/dev-commits-src-main To unsubscribe, send any mail to "[email protected]"
