git: 27f09959d5f5 - main - taskqueue: Add missing comma to TASKQUEUE_FAST_DEFINE_THREAD

Colin Percival cperciva at FreeBSD.org
Tue May 25 03:40:02 UTC 2021


The branch main has been updated by cperciva:

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

commit 27f09959d5f507465cc7f202c1b34987f0cdee55
Author:     Colin Percival <cperciva at FreeBSD.org>
AuthorDate: 2021-05-25 03:37:55 +0000
Commit:     Colin Percival <cperciva at FreeBSD.org>
CommitDate: 2021-05-25 03:37:55 +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
    MFC after:      1 week
    Differential Revision:  https://reviews.freebsd.org/D30449
---
 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 f0cc00af986e..7e59187e0114 100644
--- a/sys/sys/taskqueue.h
+++ b/sys/sys/taskqueue.h
@@ -191,7 +191,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