* linux-next: build warning after merge of the workqueues tree
@ 2024-08-21 3:45 Stephen Rothwell
2024-08-21 16:39 ` [PATCH wq/for-6.12] workqueue: Fix another htmldocs build warning Tejun Heo
0 siblings, 1 reply; 18+ messages in thread
From: Stephen Rothwell @ 2024-08-21 3:45 UTC (permalink / raw)
To: Tejun Heo
Cc: Matthew Brost, Linux Kernel Mailing List, Linux Next Mailing List
[-- Attachment #1: Type: text/plain, Size: 372 bytes --]
Hi all,
After merging the workqueues tree, today's linux-next build (htmldocs)
produced this warning:
include/linux/workqueue.h:547: warning: Excess function parameter '...' description in 'alloc_ordered_workqueue_lockdep_map'
Presumably introduced by commit
9b59a85a84dc ("workqueue: Don't call va_start / va_end twice")
--
Cheers,
Stephen Rothwell
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread* [PATCH wq/for-6.12] workqueue: Fix another htmldocs build warning
2024-08-21 3:45 linux-next: build warning after merge of the workqueues tree Stephen Rothwell
@ 2024-08-21 16:39 ` Tejun Heo
2024-08-22 3:24 ` Matthew Brost
0 siblings, 1 reply; 18+ messages in thread
From: Tejun Heo @ 2024-08-21 16:39 UTC (permalink / raw)
To: Stephen Rothwell
Cc: Matthew Brost, Linux Kernel Mailing List, Linux Next Mailing List
From d156263e247c334a8872578118e0709ed63c4806 Mon Sep 17 00:00:00 2001
From: Tejun Heo <tj@kernel.org>
Date: Wed, 21 Aug 2024 06:37:39 -1000
Fix htmldocs build warning introduced by 9b59a85a84dc ("workqueue: Don't
call va_start / va_end twice").
Signed-off-by: Tejun Heo <tj@kernel.org>
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Cc: Matthew Brost <matthew.brost@intel.com>
---
include/linux/workqueue.h | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/include/linux/workqueue.h b/include/linux/workqueue.h
index f3cc15940b4d..59c2695e12e7 100644
--- a/include/linux/workqueue.h
+++ b/include/linux/workqueue.h
@@ -534,7 +534,7 @@ alloc_workqueue_lockdep_map(const char *fmt, unsigned int flags, int max_active,
* @fmt: printf format for the name of the workqueue
* @flags: WQ_* flags (only WQ_FREEZABLE and WQ_MEM_RECLAIM are meaningful)
* @lockdep_map: user-defined lockdep_map
- * @...: args for @fmt
+ * @args: args for @fmt
*
* Same as alloc_ordered_workqueue but with the a user-define lockdep_map.
* Useful for workqueues created with the same purpose and to avoid leaking a
@@ -544,7 +544,8 @@ alloc_workqueue_lockdep_map(const char *fmt, unsigned int flags, int max_active,
* Pointer to the allocated workqueue on success, %NULL on failure.
*/
#define alloc_ordered_workqueue_lockdep_map(fmt, flags, lockdep_map, args...) \
- alloc_workqueue_lockdep_map(fmt, WQ_UNBOUND | __WQ_ORDERED | (flags), 1, lockdep_map, ##args)
+ alloc_workqueue_lockdep_map(fmt, WQ_UNBOUND | __WQ_ORDERED | (flags), \
+ 1, lockdep_map, ##args)
#endif
/**
--
2.46.0
^ permalink raw reply related [flat|nested] 18+ messages in thread* Re: [PATCH wq/for-6.12] workqueue: Fix another htmldocs build warning
2024-08-21 16:39 ` [PATCH wq/for-6.12] workqueue: Fix another htmldocs build warning Tejun Heo
@ 2024-08-22 3:24 ` Matthew Brost
0 siblings, 0 replies; 18+ messages in thread
From: Matthew Brost @ 2024-08-22 3:24 UTC (permalink / raw)
To: Tejun Heo
Cc: Stephen Rothwell, Linux Kernel Mailing List,
Linux Next Mailing List
On Wed, Aug 21, 2024 at 06:39:34AM -1000, Tejun Heo wrote:
> From d156263e247c334a8872578118e0709ed63c4806 Mon Sep 17 00:00:00 2001
> From: Tejun Heo <tj@kernel.org>
> Date: Wed, 21 Aug 2024 06:37:39 -1000
>
> Fix htmldocs build warning introduced by 9b59a85a84dc ("workqueue: Don't
> call va_start / va_end twice").
>
> Signed-off-by: Tejun Heo <tj@kernel.org>
> Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
> Cc: Matthew Brost <matthew.brost@intel.com>
Reviewed-by: Matthew Brost <matthew.brost@intel.com>
> ---
> include/linux/workqueue.h | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/include/linux/workqueue.h b/include/linux/workqueue.h
> index f3cc15940b4d..59c2695e12e7 100644
> --- a/include/linux/workqueue.h
> +++ b/include/linux/workqueue.h
> @@ -534,7 +534,7 @@ alloc_workqueue_lockdep_map(const char *fmt, unsigned int flags, int max_active,
> * @fmt: printf format for the name of the workqueue
> * @flags: WQ_* flags (only WQ_FREEZABLE and WQ_MEM_RECLAIM are meaningful)
> * @lockdep_map: user-defined lockdep_map
> - * @...: args for @fmt
> + * @args: args for @fmt
> *
> * Same as alloc_ordered_workqueue but with the a user-define lockdep_map.
> * Useful for workqueues created with the same purpose and to avoid leaking a
> @@ -544,7 +544,8 @@ alloc_workqueue_lockdep_map(const char *fmt, unsigned int flags, int max_active,
> * Pointer to the allocated workqueue on success, %NULL on failure.
> */
> #define alloc_ordered_workqueue_lockdep_map(fmt, flags, lockdep_map, args...) \
> - alloc_workqueue_lockdep_map(fmt, WQ_UNBOUND | __WQ_ORDERED | (flags), 1, lockdep_map, ##args)
> + alloc_workqueue_lockdep_map(fmt, WQ_UNBOUND | __WQ_ORDERED | (flags), \
> + 1, lockdep_map, ##args)
> #endif
>
> /**
> --
> 2.46.0
>
^ permalink raw reply [flat|nested] 18+ messages in thread
* linux-next: build warning after merge of the workqueues tree
@ 2024-08-14 4:18 Stephen Rothwell
0 siblings, 0 replies; 18+ messages in thread
From: Stephen Rothwell @ 2024-08-14 4:18 UTC (permalink / raw)
To: Tejun Heo
Cc: Matthew Brost, Linux Kernel Mailing List, Linux Next Mailing List
[-- Attachment #1: Type: text/plain, Size: 380 bytes --]
Hi all,
After merging the workqueues tree, today's linux-next build (htmldocs)
produced this warning:
include/linux/workqueue.h:549: warning: Excess function parameter 'args' description in 'alloc_ordered_workqueue_lockdep_map'
Introduced by commit
ec0a7d44b358 ("workqueue: Add interface for user-defined workqueue lockdep map")
--
Cheers,
Stephen Rothwell
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread* linux-next: build warning after merge of the workqueues tree
@ 2024-02-16 3:00 Stephen Rothwell
2024-02-16 4:46 ` Tejun Heo
0 siblings, 1 reply; 18+ messages in thread
From: Stephen Rothwell @ 2024-02-16 3:00 UTC (permalink / raw)
To: Tejun Heo; +Cc: Linux Kernel Mailing List, Linux Next Mailing List
[-- Attachment #1: Type: text/plain, Size: 476 bytes --]
Hi all,
After merging the workqueues tree, today's linux-next build (x86_64
allnoconfig) produced this warning:
WARNING: unmet direct dependencies detected for IRQ_WORK
Depends on [n]: SMP [=n]
Selected by [y]:
- PRINTK [=y]
- PERF_EVENTS [=y] && HAVE_PERF_EVENTS [=y]
Other allnoconfig builds produced similar warnings.
Introduced by commit
9d6efa8d0dd0 ("workqueue, irq_work: Build fix for !CONFIG_IRQ_WORK")
--
Cheers,
Stephen Rothwell
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread* Re: linux-next: build warning after merge of the workqueues tree
2024-02-16 3:00 Stephen Rothwell
@ 2024-02-16 4:46 ` Tejun Heo
0 siblings, 0 replies; 18+ messages in thread
From: Tejun Heo @ 2024-02-16 4:46 UTC (permalink / raw)
To: Stephen Rothwell; +Cc: Linux Kernel Mailing List, Linux Next Mailing List
Hello,
On Fri, Feb 16, 2024 at 02:00:14PM +1100, Stephen Rothwell wrote:
> Hi all,
>
> After merging the workqueues tree, today's linux-next build (x86_64
> allnoconfig) produced this warning:
>
> WARNING: unmet direct dependencies detected for IRQ_WORK
> Depends on [n]: SMP [=n]
> Selected by [y]:
> - PRINTK [=y]
> - PERF_EVENTS [=y] && HAVE_PERF_EVENTS [=y]
>
> Other allnoconfig builds produced similar warnings.
>
> Introduced by commit
>
> 9d6efa8d0dd0 ("workqueue, irq_work: Build fix for !CONFIG_IRQ_WORK")
Ah, sorry. I made it worse. I should have selected IRQ_WORK from SMP not
depend on it. Will update. Thank you.
--
tejun
^ permalink raw reply [flat|nested] 18+ messages in thread
* linux-next: build warning after merge of the workqueues tree
@ 2024-02-09 3:24 Stephen Rothwell
2024-02-09 3:45 ` Waiman Long
0 siblings, 1 reply; 18+ messages in thread
From: Stephen Rothwell @ 2024-02-09 3:24 UTC (permalink / raw)
To: Tejun Heo; +Cc: Waiman Long, Linux Kernel Mailing List, Linux Next Mailing List
[-- Attachment #1: Type: text/plain, Size: 474 bytes --]
Hi all,
After merging the workqueues tree, today's linux-next build (htmldocs)
produced this warning:
Documentation/core-api/workqueue:778: kernel/workqueue.c:1801: WARNING: Line block ends without a blank line.
Documentation/core-api/workqueue:778: kernel/workqueue.c:1804: WARNING: Line block ends without a blank line.
Introduced by commit
4c065dbce1e8 ("workqueue: Enable unbound cpumask update on ordered workqueues")
--
Cheers,
Stephen Rothwell
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread* Re: linux-next: build warning after merge of the workqueues tree
2024-02-09 3:24 Stephen Rothwell
@ 2024-02-09 3:45 ` Waiman Long
0 siblings, 0 replies; 18+ messages in thread
From: Waiman Long @ 2024-02-09 3:45 UTC (permalink / raw)
To: Stephen Rothwell, Tejun Heo
Cc: Linux Kernel Mailing List, Linux Next Mailing List
On 2/8/24 22:24, Stephen Rothwell wrote:
> Hi all,
>
> After merging the workqueues tree, today's linux-next build (htmldocs)
> produced this warning:
>
> Documentation/core-api/workqueue:778: kernel/workqueue.c:1801: WARNING: Line block ends without a blank line.
> Documentation/core-api/workqueue:778: kernel/workqueue.c:1804: WARNING: Line block ends without a blank line.
>
> Introduced by commit
>
> 4c065dbce1e8 ("workqueue: Enable unbound cpumask update on ordered workqueues")
That warning is likely by the following function comment:
/**
* unplug_oldest_pwq - restart an oldest plugged pool_workqueue
* @wq: workqueue_struct to be restarted
*
* pwq's are linked into wq->pwqs with the oldest first. For ordered
* workqueues, only the oldest pwq is unplugged, the others are plugged to
* suspend execution until the oldest one is drained. When this
happens, the
* next oldest one (first plugged pwq in iteration) will be unplugged to
* restart work item execution to ensure proper work item ordering.
*
* dfl_pwq --------------+ [P] - plugged
* |
* v
* pwqs -> A -> B [P] -> C [P] (newest)
* | | |
* 1 3 5
* | | |
* 2 4 6
*/
One possible solution is to take out one '*' of the leading "/**" so
that it is not regarded as an inline documentation block. Any other
suggestion is welcome.
Cheers,
Longman
^ permalink raw reply [flat|nested] 18+ messages in thread
* linux-next: build warning after merge of the workqueues tree
@ 2024-01-30 2:37 Stephen Rothwell
2024-04-21 23:48 ` Stephen Rothwell
0 siblings, 1 reply; 18+ messages in thread
From: Stephen Rothwell @ 2024-01-30 2:37 UTC (permalink / raw)
To: Tejun Heo; +Cc: Linux Kernel Mailing List, Linux Next Mailing List
[-- Attachment #1: Type: text/plain, Size: 394 bytes --]
Hi all,
After merging the workqueues tree, today's linux-next build (htmldocs)
produced this warning:
Documentation/core-api/workqueue:761: include/linux/workqueue.h:476: WARNING: Inline literal start-string without end-string.
Introduced by commit
5797b1c18919 ("workqueue: Implement system-wide nr_active enforcement for unbound workqueues")
--
Cheers,
Stephen Rothwell
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread* Re: linux-next: build warning after merge of the workqueues tree
2024-01-30 2:37 Stephen Rothwell
@ 2024-04-21 23:48 ` Stephen Rothwell
2024-04-22 19:59 ` Tejun Heo
2024-04-22 20:13 ` Tejun Heo
0 siblings, 2 replies; 18+ messages in thread
From: Stephen Rothwell @ 2024-04-21 23:48 UTC (permalink / raw)
To: Tejun Heo; +Cc: Linux Kernel Mailing List, Linux Next Mailing List
[-- Attachment #1: Type: text/plain, Size: 537 bytes --]
Hi all,
On Tue, 30 Jan 2024 13:37:48 +1100 Stephen Rothwell <sfr@canb.auug.org.au> wrote:
>
> After merging the workqueues tree, today's linux-next build (htmldocs)
> produced this warning:
>
> Documentation/core-api/workqueue:761: include/linux/workqueue.h:476: WARNING: Inline literal start-string without end-string.
>
> Introduced by commit
>
> 5797b1c18919 ("workqueue: Implement system-wide nr_active enforcement for unbound workqueues")
I am still seeing the above warning.
--
Cheers,
Stephen Rothwell
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread* Re: linux-next: build warning after merge of the workqueues tree
2024-04-21 23:48 ` Stephen Rothwell
@ 2024-04-22 19:59 ` Tejun Heo
2024-04-22 20:13 ` Tejun Heo
1 sibling, 0 replies; 18+ messages in thread
From: Tejun Heo @ 2024-04-22 19:59 UTC (permalink / raw)
To: Stephen Rothwell; +Cc: Linux Kernel Mailing List, Linux Next Mailing List
On Mon, Apr 22, 2024 at 09:48:16AM +1000, Stephen Rothwell wrote:
> Hi all,
>
> On Tue, 30 Jan 2024 13:37:48 +1100 Stephen Rothwell <sfr@canb.auug.org.au> wrote:
> >
> > After merging the workqueues tree, today's linux-next build (htmldocs)
> > produced this warning:
> >
> > Documentation/core-api/workqueue:761: include/linux/workqueue.h:476: WARNING: Inline literal start-string without end-string.
> >
> > Introduced by commit
> >
> > 5797b1c18919 ("workqueue: Implement system-wide nr_active enforcement for unbound workqueues")
>
> I am still seeing the above warning.
Oops, sorry about missing that. Will fix.
Thanks.
--
tejun
^ permalink raw reply [flat|nested] 18+ messages in thread* Re: linux-next: build warning after merge of the workqueues tree
2024-04-21 23:48 ` Stephen Rothwell
2024-04-22 19:59 ` Tejun Heo
@ 2024-04-22 20:13 ` Tejun Heo
1 sibling, 0 replies; 18+ messages in thread
From: Tejun Heo @ 2024-04-22 20:13 UTC (permalink / raw)
To: Stephen Rothwell; +Cc: Linux Kernel Mailing List, Linux Next Mailing List
Hello,
I applied the following patch to wq/for-6.10.
The offending line wasn't introduced recently tho. It goes way back.
5797b1c18919 just touches the surrounding lines. Maybe that triggered
something?
Thanks.
------ 8< ------
From 51da7f68edae38e81543d57fd71811f7481c0472 Mon Sep 17 00:00:00 2001
From: Tejun Heo <tj@kernel.org>
Date: Mon, 22 Apr 2024 10:03:13 -1000
Subject: [PATCH] workqueue: Use "@..." in function comment to describe
variable length argument
Previously, it was using "remaining args" without leading "@" which isn't
valid. Let's follow snprintf()'s example and use "@...".
Signed-off-by: Tejun Heo <tj@kernel.org>
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
---
include/linux/workqueue.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/linux/workqueue.h b/include/linux/workqueue.h
index 2df1188c0f96..fb3993894536 100644
--- a/include/linux/workqueue.h
+++ b/include/linux/workqueue.h
@@ -473,7 +473,7 @@ void workqueue_softirq_dead(unsigned int cpu);
* @fmt: printf format for the name of the workqueue
* @flags: WQ_* flags
* @max_active: max in-flight work items, 0 for default
- * remaining args: args for @fmt
+ * @...: args for @fmt
*
* For a per-cpu workqueue, @max_active limits the number of in-flight work
* items for each CPU. e.g. @max_active of 1 indicates that each CPU can be
--
2.44.0
^ permalink raw reply related [flat|nested] 18+ messages in thread
* linux-next: build warning after merge of the workqueues tree
@ 2023-01-13 3:31 Stephen Rothwell
2023-01-13 16:31 ` Tejun Heo
0 siblings, 1 reply; 18+ messages in thread
From: Stephen Rothwell @ 2023-01-13 3:31 UTC (permalink / raw)
To: Tejun Heo
Cc: Valentin Schneider, Linux Kernel Mailing List,
Linux Next Mailing List
[-- Attachment #1: Type: text/plain, Size: 483 bytes --]
Hi all,
After merging the workqueues tree, today's linux-next build (x86_64
allnoconfig and several others) produced this warning:
kernel/workqueue.c:1993:13: warning: 'rebind_worker' defined but not used [-Wunused-function]
1993 | static void rebind_worker(struct worker *worker, struct worker_pool *pool)
| ^~~~~~~~~~~~~
Introduced by commit
793777bc193b ("workqueue: Factorize unbind/rebind_workers() logic")
--
Cheers,
Stephen Rothwell
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread* Re: linux-next: build warning after merge of the workqueues tree
2023-01-13 3:31 Stephen Rothwell
@ 2023-01-13 16:31 ` Tejun Heo
2023-01-13 16:47 ` Valentin Schneider
0 siblings, 1 reply; 18+ messages in thread
From: Tejun Heo @ 2023-01-13 16:31 UTC (permalink / raw)
To: Stephen Rothwell
Cc: Valentin Schneider, Linux Kernel Mailing List,
Linux Next Mailing List
On Fri, Jan 13, 2023 at 02:31:02PM +1100, Stephen Rothwell wrote:
> Hi all,
>
> After merging the workqueues tree, today's linux-next build (x86_64
> allnoconfig and several others) produced this warning:
>
> kernel/workqueue.c:1993:13: warning: 'rebind_worker' defined but not used [-Wunused-function]
> 1993 | static void rebind_worker(struct worker *worker, struct worker_pool *pool)
> | ^~~~~~~~~~~~~
>
> Introduced by commit
>
> 793777bc193b ("workqueue: Factorize unbind/rebind_workers() logic")
Valentin, this is caused by rebind_worker() being only used by
rebind_workers() which is inside CONFIG_SMP. I don't see any other uses of
rebind_worker(). Just fold it back into rebind_workers()?
Thanks.
--
tejun
^ permalink raw reply [flat|nested] 18+ messages in thread* Re: linux-next: build warning after merge of the workqueues tree
2023-01-13 16:31 ` Tejun Heo
@ 2023-01-13 16:47 ` Valentin Schneider
2023-01-13 16:48 ` Valentin Schneider
0 siblings, 1 reply; 18+ messages in thread
From: Valentin Schneider @ 2023-01-13 16:47 UTC (permalink / raw)
To: Tejun Heo, Stephen Rothwell
Cc: Linux Kernel Mailing List, Linux Next Mailing List
On 13/01/23 06:31, Tejun Heo wrote:
> On Fri, Jan 13, 2023 at 02:31:02PM +1100, Stephen Rothwell wrote:
>> Hi all,
>>
>> After merging the workqueues tree, today's linux-next build (x86_64
>> allnoconfig and several others) produced this warning:
>>
>> kernel/workqueue.c:1993:13: warning: 'rebind_worker' defined but not used [-Wunused-function]
>> 1993 | static void rebind_worker(struct worker *worker, struct worker_pool *pool)
>> | ^~~~~~~~~~~~~
>>
>> Introduced by commit
>>
>> 793777bc193b ("workqueue: Factorize unbind/rebind_workers() logic")
>
> Valentin, this is caused by rebind_worker() being only used by
> rebind_workers() which is inside CONFIG_SMP. I don't see any other uses of
> rebind_worker(). Just fold it back into rebind_workers()?
>
Woops! Yes I only did it to keep things aligned with unbind_workers(), let
me resend with that folded back in. Sorry!
> Thanks.
>
> --
> tejun
^ permalink raw reply [flat|nested] 18+ messages in thread* Re: linux-next: build warning after merge of the workqueues tree
2023-01-13 16:47 ` Valentin Schneider
@ 2023-01-13 16:48 ` Valentin Schneider
2023-01-13 17:16 ` Tejun Heo
0 siblings, 1 reply; 18+ messages in thread
From: Valentin Schneider @ 2023-01-13 16:48 UTC (permalink / raw)
To: Tejun Heo, Stephen Rothwell
Cc: Linux Kernel Mailing List, Linux Next Mailing List
On 13/01/23 16:47, Valentin Schneider wrote:
> On 13/01/23 06:31, Tejun Heo wrote:
>> On Fri, Jan 13, 2023 at 02:31:02PM +1100, Stephen Rothwell wrote:
>>> Hi all,
>>>
>>> After merging the workqueues tree, today's linux-next build (x86_64
>>> allnoconfig and several others) produced this warning:
>>>
>>> kernel/workqueue.c:1993:13: warning: 'rebind_worker' defined but not used [-Wunused-function]
>>> 1993 | static void rebind_worker(struct worker *worker, struct worker_pool *pool)
>>> | ^~~~~~~~~~~~~
>>>
>>> Introduced by commit
>>>
>>> 793777bc193b ("workqueue: Factorize unbind/rebind_workers() logic")
>>
>> Valentin, this is caused by rebind_worker() being only used by
>> rebind_workers() which is inside CONFIG_SMP. I don't see any other uses of
>> rebind_worker(). Just fold it back into rebind_workers()?
>>
>
> Woops! Yes I only did it to keep things aligned with unbind_workers(), let
> me resend with that folded back in. Sorry!
>
Unless you'd prefer a fixup patch on top of those you've already picked up?
>> Thanks.
>>
>> --
>> tejun
^ permalink raw reply [flat|nested] 18+ messages in thread* Re: linux-next: build warning after merge of the workqueues tree
2023-01-13 16:48 ` Valentin Schneider
@ 2023-01-13 17:16 ` Tejun Heo
0 siblings, 0 replies; 18+ messages in thread
From: Tejun Heo @ 2023-01-13 17:16 UTC (permalink / raw)
To: Valentin Schneider
Cc: Stephen Rothwell, Linux Kernel Mailing List,
Linux Next Mailing List
On Fri, Jan 13, 2023 at 04:48:29PM +0000, Valentin Schneider wrote:
> On 13/01/23 16:47, Valentin Schneider wrote:
> > On 13/01/23 06:31, Tejun Heo wrote:
> >> On Fri, Jan 13, 2023 at 02:31:02PM +1100, Stephen Rothwell wrote:
> >>> Hi all,
> >>>
> >>> After merging the workqueues tree, today's linux-next build (x86_64
> >>> allnoconfig and several others) produced this warning:
> >>>
> >>> kernel/workqueue.c:1993:13: warning: 'rebind_worker' defined but not used [-Wunused-function]
> >>> 1993 | static void rebind_worker(struct worker *worker, struct worker_pool *pool)
> >>> | ^~~~~~~~~~~~~
> >>>
> >>> Introduced by commit
> >>>
> >>> 793777bc193b ("workqueue: Factorize unbind/rebind_workers() logic")
> >>
> >> Valentin, this is caused by rebind_worker() being only used by
> >> rebind_workers() which is inside CONFIG_SMP. I don't see any other uses of
> >> rebind_worker(). Just fold it back into rebind_workers()?
> >>
> >
> > Woops! Yes I only did it to keep things aligned with unbind_workers(), let
> > me resend with that folded back in. Sorry!
> >
>
> Unless you'd prefer a fixup patch on top of those you've already picked up?
Yeah, just send another patch to fold it back in.
Thanks.
--
tejun
^ permalink raw reply [flat|nested] 18+ messages in thread
* linux-next: build warning after merge of the workqueues tree
@ 2013-03-19 3:58 Stephen Rothwell
0 siblings, 0 replies; 18+ messages in thread
From: Stephen Rothwell @ 2013-03-19 3:58 UTC (permalink / raw)
To: Tejun Heo; +Cc: linux-next, linux-kernel
[-- Attachment #1: Type: text/plain, Size: 435 bytes --]
Hi Tejun,
After merging the workqueues tree, today's linux-next build (powerpc
allnoconfig) produced this warning:
kernel/workqueue.c:260:13: warning: 'workqueue_freezing' defined but not used [-Wunused-variable]
Introduced by commit 699ce097efe8 ("workqueue: implement and use
pwq_adjust_max_active()"). This build does not have CONFIG_FREEZER set.
--
Cheers,
Stephen Rothwell sfr@canb.auug.org.au
[-- Attachment #2: Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread
end of thread, other threads:[~2024-08-22 3:25 UTC | newest]
Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-21 3:45 linux-next: build warning after merge of the workqueues tree Stephen Rothwell
2024-08-21 16:39 ` [PATCH wq/for-6.12] workqueue: Fix another htmldocs build warning Tejun Heo
2024-08-22 3:24 ` Matthew Brost
-- strict thread matches above, loose matches on Subject: below --
2024-08-14 4:18 linux-next: build warning after merge of the workqueues tree Stephen Rothwell
2024-02-16 3:00 Stephen Rothwell
2024-02-16 4:46 ` Tejun Heo
2024-02-09 3:24 Stephen Rothwell
2024-02-09 3:45 ` Waiman Long
2024-01-30 2:37 Stephen Rothwell
2024-04-21 23:48 ` Stephen Rothwell
2024-04-22 19:59 ` Tejun Heo
2024-04-22 20:13 ` Tejun Heo
2023-01-13 3:31 Stephen Rothwell
2023-01-13 16:31 ` Tejun Heo
2023-01-13 16:47 ` Valentin Schneider
2023-01-13 16:48 ` Valentin Schneider
2023-01-13 17:16 ` Tejun Heo
2013-03-19 3:58 Stephen Rothwell
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox