The branch stable/12 has been updated by mav:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=ab96b52907d0842ed1abef5ead1ddc40d67ebf80

commit ab96b52907d0842ed1abef5ead1ddc40d67ebf80
Author:     Alexander Motin <[email protected]>
AuthorDate: 2021-09-01 03:47:51 +0000
Commit:     Alexander Motin <[email protected]>
CommitDate: 2021-09-15 01:33:00 +0000

    Align taskqueue_enqueue_timeout() to hardclock.
    
    It is done for all other KPIs using HZ, but was missed here.
    
    MFC after:      2 weeks
    
    (cherry picked from commit 706b1a5724d668a8752ac89cd67113e4c6917d54)
---
 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 b643c0150c41..66b08f9426f5 100644
--- a/sys/kern/subr_taskqueue.c
+++ b/sys/kern/subr_taskqueue.c
@@ -342,7 +342,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-all
To unsubscribe, send any mail to "[email protected]"

Reply via email to