LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [patch] lockdep: forward declare struct trask_struct
@ 2007-02-07 11:23 Heiko Carstens
2007-02-07 22:48 ` Andrew Morton
0 siblings, 1 reply; 2+ messages in thread
From: Heiko Carstens @ 2007-02-07 11:23 UTC (permalink / raw)
To: Andrew Morton, Ingo Molnar, Martin Schwidefsky; +Cc: linux-kernel
From: Heiko Carstens <heiko.carstens@de.ibm.com>
3117df0453828bd045c16244e6f50e5714667a8a causes this:
In file included from arch/s390/kernel/early.c:13:
include/linux/lockdep.h:300: warning:
"struct task_struct" declared inside parameter list
include/linux/lockdep.h:300:
warning: its scope is only this definition or
declaration, which is probably not what you want
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Martin Schwidefsky <schwidefsky@de.ibm.com>
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
---
include/linux/lockdep.h | 2 ++
1 files changed, 2 insertions(+)
Index: linux-2.6/include/linux/lockdep.h
===================================================================
--- linux-2.6.orig/include/linux/lockdep.h
+++ linux-2.6/include/linux/lockdep.h
@@ -286,6 +286,8 @@ static inline void early_init_irq_lock_c
}
#endif
+struct task_struct;
+
#ifdef CONFIG_TRACE_IRQFLAGS
extern void early_boot_irqs_off(void);
extern void early_boot_irqs_on(void);
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [patch] lockdep: forward declare struct trask_struct
2007-02-07 11:23 [patch] lockdep: forward declare struct trask_struct Heiko Carstens
@ 2007-02-07 22:48 ` Andrew Morton
0 siblings, 0 replies; 2+ messages in thread
From: Andrew Morton @ 2007-02-07 22:48 UTC (permalink / raw)
To: Heiko Carstens; +Cc: Ingo Molnar, Martin Schwidefsky, linux-kernel
On Wed, 7 Feb 2007 12:23:01 +0100
Heiko Carstens <heiko.carstens@de.ibm.com> wrote:
> From: Heiko Carstens <heiko.carstens@de.ibm.com>
>
> 3117df0453828bd045c16244e6f50e5714667a8a causes this:
>
> In file included from arch/s390/kernel/early.c:13:
> include/linux/lockdep.h:300: warning:
> "struct task_struct" declared inside parameter list
> include/linux/lockdep.h:300:
> warning: its scope is only this definition or
> declaration, which is probably not what you want
>
> Cc: Ingo Molnar <mingo@elte.hu>
> Cc: Martin Schwidefsky <schwidefsky@de.ibm.com>
> Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
> ---
> include/linux/lockdep.h | 2 ++
> 1 files changed, 2 insertions(+)
>
> Index: linux-2.6/include/linux/lockdep.h
> ===================================================================
> --- linux-2.6.orig/include/linux/lockdep.h
> +++ linux-2.6/include/linux/lockdep.h
> @@ -286,6 +286,8 @@ static inline void early_init_irq_lock_c
> }
> #endif
>
> +struct task_struct;
Minor nit: please put such forward declarations right at the top of the
header file.
Otherwise someone might come along later and require task_struct at line
100. They'll then add another forward-declaration at line 95 and so on.
This has happened in the past.
I updated the patch to do this.
diff -puN include/linux/lockdep.h~lockdep-forward-declare-struct-trask_struct include/linux/lockdep.h
--- a/include/linux/lockdep.h~lockdep-forward-declare-struct-trask_struct
+++ a/include/linux/lockdep.h
@@ -8,6 +8,8 @@
#ifndef __LINUX_LOCKDEP_H
#define __LINUX_LOCKDEP_H
+struct task_struct;
+
#ifdef CONFIG_LOCKDEP
#include <linux/linkage.h>
_
Note that it's outside CONFIG_LOCKDEP, to avoid possible
hey-my-build-broke-when-i-turned-off-lockdep problems.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2007-02-07 22:48 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-02-07 11:23 [patch] lockdep: forward declare struct trask_struct Heiko Carstens
2007-02-07 22:48 ` Andrew Morton
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).