The branch main has been updated by kib:

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

commit 845d77974b3b6ab78297836ead2d2acbcdebeba7
Author:     Konstantin Belousov <[email protected]>
AuthorDate: 2021-05-25 18:09:33 +0000
Commit:     Konstantin Belousov <[email protected]>
CommitDate: 2021-05-31 15:09:22 +0000

    kern_thread.c: wrap too long lines
    
    Reviewed by:    hselasky, markj
    Sponsored by:   Mellanox Technologies/NVidia Networking
    MFC after:      1 week
    Differential revision:  https://reviews.freebsd.org/D30468
---
 sys/kern/kern_thread.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/sys/kern/kern_thread.c b/sys/kern/kern_thread.c
index a52d6e75fd03..935d7071e452 100644
--- a/sys/kern/kern_thread.c
+++ b/sys/kern/kern_thread.c
@@ -541,7 +541,8 @@ threadinit(void)
 
        TASK_INIT(&thread_reap_task, 0, thread_reap_task_cb, NULL);
        callout_init(&thread_reap_callout, 1);
-       callout_reset(&thread_reap_callout, 5 * hz, thread_reap_callout_cb, 
NULL);
+       callout_reset(&thread_reap_callout, 5 * hz,
+           thread_reap_callout_cb, NULL);
 }
 
 /*
@@ -704,7 +705,8 @@ thread_reap_callout_cb(void *arg __unused)
 
        if (wantreap)
                taskqueue_enqueue(taskqueue_thread, &thread_reap_task);
-       callout_reset(&thread_reap_callout, 5 * hz, thread_reap_callout_cb, 
NULL);
+       callout_reset(&thread_reap_callout, 5 * hz,
+           thread_reap_callout_cb, NULL);
 }
 
 /*
_______________________________________________
[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