From 4a18e68c3f0b8def044d9b9b55df1ea9c32757c5 Mon Sep 17 00:00:00 2001 From: Bart Van Assche Date: Sun, 14 May 2017 02:55:24 +0000 Subject: [PATCH] scst/include/backport.h: Fix kthread_create_on_node() definition git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@7177 d57e44dd-8a1f-0410-8b47-8ef2f437770f --- scst/include/backport.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scst/include/backport.h b/scst/include/backport.h index 638e57e35..29c441981 100644 --- a/scst/include/backport.h +++ b/scst/include/backport.h @@ -366,7 +366,7 @@ static inline int __must_check kref_get_unless_zero(struct kref *kref) /* See also commit 207205a2ba26 */ #if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 39) #define kthread_create_on_node(threadfn, data, node, namefmt, arg...)\ - kthread_create((threadfn), (data), ##arg) + kthread_create((threadfn), (data), (namefmt), ##arg) #endif /* */