git: 3a5f854f458d - stable/11 - taskqueue: Add missing comma to TASKQUEUE_FAST_DEFINE_THREAD

Colin Percival cperciva at FreeBSD.org
Tue Jun 1 00:57:02 UTC 2021


The branch stable/11 has been updated by cperciva:

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

commit 3a5f854f458d4daeb2abdeb9077aa67058e93ea6
Author:     Colin Percival <cperciva at FreeBSD.org>
AuthorDate: 2021-05-25 03:37:55 +0000
Commit:     Colin Percival <cperciva at FreeBSD.org>
CommitDate: 2021-06-01 00:56:48 +0000

    taskqueue: Add missing comma to TASKQUEUE_FAST_DEFINE_THREAD
    
    Add missing comma to TASKQUEUE_FAST_DEFINE_THREAD arguments to prevent
    compilation errors.
    
    Submitted by:   ashafer_badland.io
    
    (cherry picked from commit 27f09959d5f507465cc7f202c1b34987f0cdee55)
---
 sys/sys/taskqueue.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/sys/taskqueue.h b/sys/sys/taskqueue.h
index 9aff621206d6..641a252672cb 100644
--- a/sys/sys/taskqueue.h
+++ b/sys/sys/taskqueue.h
@@ -181,7 +181,7 @@ SYSINIT(taskqueue_##name, SI_SUB_TASKQ, SI_ORDER_SECOND,		\
 struct __hack
 #define TASKQUEUE_FAST_DEFINE_THREAD(name)				\
 TASKQUEUE_FAST_DEFINE(name, taskqueue_thread_enqueue,			\
-	&taskqueue_##name, taskqueue_start_threads(&taskqueue_##name	\
+	&taskqueue_##name, taskqueue_start_threads(&taskqueue_##name,	\
 	1, PWAIT, "%s taskq", #name))
 
 /*


More information about the dev-commits-src-all mailing list