]> www.infradead.org Git - users/willy/xarray.git/commit
kernel/workqueue.c: fix DEFINE_PER_CPU_SHARED_ALIGNED expansion
authorBaoquan He <bhe@redhat.com>
Wed, 11 Sep 2024 05:07:28 +0000 (13:07 +0800)
committerTejun Heo <tj@kernel.org>
Wed, 11 Sep 2024 18:10:44 +0000 (08:10 -1000)
commitb4722b8593b8815785bbadf87f13c88e89a0ebef
treef0f4d8fd8a291130ce68430807581ee1b37b9094
parentd156263e247c334a8872578118e0709ed63c4806
kernel/workqueue.c: fix DEFINE_PER_CPU_SHARED_ALIGNED expansion

Make tags always produces below annoying warnings:

ctags: Warning: kernel/workqueue.c:470: null expansion of name pattern "\1"
ctags: Warning: kernel/workqueue.c:474: null expansion of name pattern "\1"
ctags: Warning: kernel/workqueue.c:478: null expansion of name pattern "\1"

In commit 25528213fe9f ("tags: Fix DEFINE_PER_CPU expansions"), codes in
places have been adjusted including cpu_worker_pools definition. I noticed
in commit 4cb1ef64609f ("workqueue: Implement BH workqueues to eventually
replace tasklets"), cpu_worker_pools definition was unfolded back. Not
sure if it was intentionally done or ignored carelessly.

Makes change to mute them specifically.

Signed-off-by: Baoquan He <bhe@redhat.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
kernel/workqueue.c