]> git.baikalelectronics.ru Git - kernel.git/commit
linux/kthread.h: remove unused macros
authorRasmus Villemoes <linux@rasmusvillemoes.dk>
Tue, 22 Mar 2022 21:38:33 +0000 (14:38 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Tue, 22 Mar 2022 22:57:00 +0000 (15:57 -0700)
commitb7cbd4fcda7b72a48a440150d8a6ca77f0835516
tree734dfce1b57189da65bfe26267983169cb0a2c87
parentfe812a8853e130b702ef8e97bf40c54cf40709d6
linux/kthread.h: remove unused macros

Ever since these macros were introduced in commit 55d23b277def
("kthread: implement kthread_worker"), there has been precisely one user
(commit c7e5ac923f54, "NVMe: Async IO queue deletion"), and that user
went away in 2016 with 420ddff67a16 ("NVMe: IO queue deletion
re-write").

Apart from being unused, these macros are also awkward to use (which may
contribute to them not being used): Having a way to statically (or
on-stack) allocating the storage for the struct kthread_worker itself
doesn't help much, since obviously one needs to have some code for
actually _spawning_ the worker thread, which must have error checking.
And these days we have the kthread_create_worker() interface which both
allocates the struct kthread_worker and spawns the kthread.

Link: https://lkml.kernel.org/r/20220314145343.494694-1-linux@rasmusvillemoes.dk
Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Acked-by: Tejun Heo <tj@kernel.org>
Cc: "Eric W. Biederman" <ebiederm@xmission.com>
Cc: Petr Mladek <pmladek@suse.com>
Cc: David Hildenbrand <david@redhat.com>
Cc: Yafang Shao <laoar.shao@gmail.com>
Cc: Cai Huoqing <caihuoqing@baidu.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
include/linux/kthread.h