* Re: [PATCH] severing module.h->sched.h
[not found] <200612041859.kB4Ix2cx013332@hera.kernel.org>
@ 2007-01-10 21:39 ` Geert Uytterhoeven
2007-01-13 17:44 ` Tim Schmielau
0 siblings, 1 reply; 2+ messages in thread
From: Geert Uytterhoeven @ 2007-01-10 21:39 UTC (permalink / raw)
To: Al Viro, Linus Torvalds, Andrew Morton
Cc: Linux Kernel Development, Linux/m68k
On Mon, 4 Dec 2006, Linux Kernel Mailing List wrote:
> Gitweb: http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f6a570333e554b48ad589e7137c77c57809eee81
> Commit: f6a570333e554b48ad589e7137c77c57809eee81
> Parent: 2b5f6dcce5bf94b9b119e9ed8d537098ec61c3d2
> Author: Al Viro <viro@zeniv.linux.org.uk>
> AuthorDate: Wed Oct 18 01:47:25 2006 -0400
> Committer: Al Viro <viro@zeniv.linux.org.uk>
> CommitDate: Mon Dec 4 02:00:22 2006 -0500
>
> [PATCH] severing module.h->sched.h
>
> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
> diff --git a/include/linux/module.h b/include/linux/module.h
> index 9258ffd..d33df24 100644
> --- a/include/linux/module.h
> +++ b/include/linux/module.h
> @@ -6,7 +6,6 @@
> * Rewritten by Richard Henderson <rth@tamu.edu> Dec 1996
> * Rewritten again by Rusty Russell, 2002
> */
> -#include <linux/sched.h>
> #include <linux/spinlock.h>
> #include <linux/list.h>
> #include <linux/stat.h>
This change causes the following compile errors on m68k:
| linux-2.6.20-rc4/kernel/time/clocksource.c: In function `sysfs_show_current_clocksources':
| linux-2.6.20-rc4/kernel/time/clocksource.c:204: error: dereferencing pointer to incomplete type
| linux-2.6.20-rc4/kernel/time/clocksource.c: In function `sysfs_override_clocksource':
| linux-2.6.20-rc4/kernel/time/clocksource.c:243: error: dereferencing pointer to incomplete type
| linux-2.6.20-rc4/kernel/time/clocksource.c: In function `sysfs_show_available_clocksources':
| linux-2.6.20-rc4/kernel/time/clocksource.c:268: error: dereferencing pointer to incomplete type
spin_lock_irq
-> _spin_lock_irq
-> preempt_disable
-> inc_preempt_count
-> add_preempt_count
-> preempt_count
-> current_thread_info
-> task_thread_info
which needs the definition of struct task_struct.
The patch below fixes it by including <linux/sched.h> in
kernel/time/clocksource.c. But perhaps this is the right time to move
struct task_struct to its own include instead?
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
diff --git a/kernel/time/clocksource.c b/kernel/time/clocksource.c
index 22504af..dda1e21 100644
--- a/kernel/time/clocksource.c
+++ b/kernel/time/clocksource.c
@@ -28,6 +28,7 @@
#include <linux/sysdev.h>
#include <linux/init.h>
#include <linux/module.h>
+#include <linux/sched.h>
/* XXX - Would like a better way for initializing curr_clocksource */
extern struct clocksource clocksource_jiffies;
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] severing module.h->sched.h
2007-01-10 21:39 ` [PATCH] severing module.h->sched.h Geert Uytterhoeven
@ 2007-01-13 17:44 ` Tim Schmielau
0 siblings, 0 replies; 2+ messages in thread
From: Tim Schmielau @ 2007-01-13 17:44 UTC (permalink / raw)
To: Geert Uytterhoeven
Cc: Al Viro, Linus Torvalds, Andrew Morton, Linux Kernel Development,
Linux/m68k
On Wed, 10 Jan 2007, Geert Uytterhoeven wrote:
> which needs the definition of struct task_struct.
>
> The patch below fixes it by including <linux/sched.h> in
> kernel/time/clocksource.c. But perhaps this is the right time to move
> struct task_struct to its own include instead?
I used to post such a patch once every few years, as it allows to remove
the (indirect) include of that sched.h monster from a few thousand files.
If there is interest in such a move, I'll cook up a patch within the next
weeks.
Tim
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2007-01-13 17:44 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
[not found] <200612041859.kB4Ix2cx013332@hera.kernel.org>
2007-01-10 21:39 ` [PATCH] severing module.h->sched.h Geert Uytterhoeven
2007-01-13 17:44 ` Tim Schmielau
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®