Message ID | 1488827635-7708-1-git-send-email-linux@roeck-us.net (mailing list archive) |
---|---|
State | Not Applicable |
Delegated to: | Herbert Xu |
Headers | show |
Hi Guenter, On Mon, Mar 06, 2017 at 11:13:55AM -0800, Guenter Roeck wrote: > Since commit f3ac60671954 ("sched/headers: Move task-stack related > APIs from <linux/sched.h> to <linux/sched/task_stack.h>") and commit > f780d89a0e82 ("sched/headers: Remove <asm/ptrace.h> from > <linux/sched.h>"), various mips builds fail as follows. > > arch/mips/kernel/smp-mt.c: In function ‘vsmp_boot_secondary’: > arch/mips/include/asm/processor.h:384:41: error: > implicit declaration of function ‘task_stack_page’ > > In file included from > /opt/buildbot/slave/hwmon-testing/build/arch/mips/kernel/pm.c: > arch/mips/include/asm/fpu.h: In function '__own_fpu': > arch/mips/include/asm/processor.h:385:31: error: > invalid application of 'sizeof' to incomplete type 'struct pt_regs' This one is in an inline function, so I think it'd affect multiple includes of <asm/fpu.h> even if __own_fpu isn't used, so I think the following patch which adds the include ptrace.h in fpu.h is more robust than adding to the individual c files affected: https://patchwork.linux-mips.org/patch/15386/ Admitedly it could probably have a more specific subject line since there are more similar errors. Cheers James > > arch/mips/netlogic/common/smp.c: In function 'nlm_boot_secondary': > arch/mips/netlogic/common/smp.c:157:2: error: > implicit declaration of function 'task_stack_page' > > and more similar errors. > > Fixes: f3ac60671954 ("sched/headers: Move task-stack related APIs ...") > Fixes: f780d89a0e82 ("sched/headers: Remove <asm/ptrace.h> from ...") > Cc: Ingo Molnar <mingo@kernel.org> > Signed-off-by: Guenter Roeck <linux@roeck-us.net> > --- > v3: Catch more build errors > > arch/mips/cavium-octeon/cpu.c | 3 ++- > arch/mips/cavium-octeon/crypto/octeon-crypto.c | 1 + > arch/mips/cavium-octeon/smp.c | 2 +- > arch/mips/kernel/pm.c | 1 + > arch/mips/kernel/smp-mt.c | 2 +- > arch/mips/netlogic/common/smp.c | 1 + > arch/mips/netlogic/xlp/cop2-ex.c | 3 ++- > arch/mips/power/cpu.c | 1 + > 8 files changed, 10 insertions(+), 4 deletions(-) > > diff --git a/arch/mips/cavium-octeon/cpu.c b/arch/mips/cavium-octeon/cpu.c > index a5b427909b5c..b826b7a87c57 100644 > --- a/arch/mips/cavium-octeon/cpu.c > +++ b/arch/mips/cavium-octeon/cpu.c > @@ -10,7 +10,8 @@ > #include <linux/irqflags.h> > #include <linux/notifier.h> > #include <linux/prefetch.h> > -#include <linux/sched.h> > +#include <linux/ptrace.h> > +#include <linux/sched/task_stack.h> > > #include <asm/cop2.h> > #include <asm/current.h> > diff --git a/arch/mips/cavium-octeon/crypto/octeon-crypto.c b/arch/mips/cavium-octeon/crypto/octeon-crypto.c > index 4d22365844af..cfb4a146cf17 100644 > --- a/arch/mips/cavium-octeon/crypto/octeon-crypto.c > +++ b/arch/mips/cavium-octeon/crypto/octeon-crypto.c > @@ -9,6 +9,7 @@ > #include <asm/cop2.h> > #include <linux/export.h> > #include <linux/interrupt.h> > +#include <linux/sched/task_stack.h> > > #include "octeon-crypto.h" > > diff --git a/arch/mips/cavium-octeon/smp.c b/arch/mips/cavium-octeon/smp.c > index 4b94b7fbafa3..d475c0146347 100644 > --- a/arch/mips/cavium-octeon/smp.c > +++ b/arch/mips/cavium-octeon/smp.c > @@ -10,8 +10,8 @@ > #include <linux/smp.h> > #include <linux/interrupt.h> > #include <linux/kernel_stat.h> > -#include <linux/sched.h> > #include <linux/sched/hotplug.h> > +#include <linux/sched/task_stack.h> > #include <linux/init.h> > #include <linux/export.h> > > diff --git a/arch/mips/kernel/pm.c b/arch/mips/kernel/pm.c > index dc814892133c..fab05022ab39 100644 > --- a/arch/mips/kernel/pm.c > +++ b/arch/mips/kernel/pm.c > @@ -11,6 +11,7 @@ > > #include <linux/cpu_pm.h> > #include <linux/init.h> > +#include <linux/ptrace.h> > > #include <asm/dsp.h> > #include <asm/fpu.h> > diff --git a/arch/mips/kernel/smp-mt.c b/arch/mips/kernel/smp-mt.c > index e077ea3e11fb..effc1ed18954 100644 > --- a/arch/mips/kernel/smp-mt.c > +++ b/arch/mips/kernel/smp-mt.c > @@ -18,7 +18,7 @@ > * Copyright (C) 2006 Ralf Baechle (ralf@linux-mips.org) > */ > #include <linux/kernel.h> > -#include <linux/sched.h> > +#include <linux/sched/task_stack.h> > #include <linux/cpumask.h> > #include <linux/interrupt.h> > #include <linux/irqchip/mips-gic.h> > diff --git a/arch/mips/netlogic/common/smp.c b/arch/mips/netlogic/common/smp.c > index 10d86d54880a..9035558920c1 100644 > --- a/arch/mips/netlogic/common/smp.c > +++ b/arch/mips/netlogic/common/smp.c > @@ -37,6 +37,7 @@ > #include <linux/init.h> > #include <linux/smp.h> > #include <linux/irq.h> > +#include <linux/sched/task_stack.h> > > #include <asm/mmu_context.h> > > diff --git a/arch/mips/netlogic/xlp/cop2-ex.c b/arch/mips/netlogic/xlp/cop2-ex.c > index 52bc5de42005..d990b7fc84aa 100644 > --- a/arch/mips/netlogic/xlp/cop2-ex.c > +++ b/arch/mips/netlogic/xlp/cop2-ex.c > @@ -13,7 +13,8 @@ > #include <linux/irqflags.h> > #include <linux/notifier.h> > #include <linux/prefetch.h> > -#include <linux/sched.h> > +#include <linux/ptrace.h> > +#include <linux/sched/task_stack.h> > > #include <asm/cop2.h> > #include <asm/current.h> > diff --git a/arch/mips/power/cpu.c b/arch/mips/power/cpu.c > index 2129e67723ff..6ecccc26bf7f 100644 > --- a/arch/mips/power/cpu.c > +++ b/arch/mips/power/cpu.c > @@ -7,6 +7,7 @@ > * Author: Hu Hongbing <huhb@lemote.com> > * Wu Zhangjin <wuzhangjin@gmail.com> > */ > +#include <linux/ptrace.h> > #include <asm/sections.h> > #include <asm/fpu.h> > #include <asm/dsp.h> > -- > 2.7.4 > >
On 03/06/2017 03:20 PM, James Hogan wrote: > Hi Guenter, > > On Mon, Mar 06, 2017 at 11:13:55AM -0800, Guenter Roeck wrote: >> Since commit f3ac60671954 ("sched/headers: Move task-stack related >> APIs from <linux/sched.h> to <linux/sched/task_stack.h>") and commit >> f780d89a0e82 ("sched/headers: Remove <asm/ptrace.h> from >> <linux/sched.h>"), various mips builds fail as follows. >> >> arch/mips/kernel/smp-mt.c: In function ‘vsmp_boot_secondary’: >> arch/mips/include/asm/processor.h:384:41: error: >> implicit declaration of function ‘task_stack_page’ >> >> In file included from >> /opt/buildbot/slave/hwmon-testing/build/arch/mips/kernel/pm.c: >> arch/mips/include/asm/fpu.h: In function '__own_fpu': >> arch/mips/include/asm/processor.h:385:31: error: >> invalid application of 'sizeof' to incomplete type 'struct pt_regs' > > This one is in an inline function, so I think it'd affect multiple > includes of <asm/fpu.h> even if __own_fpu isn't used, so I think the > following patch which adds the include ptrace.h in fpu.h is more robust > than adding to the individual c files affected: > https://patchwork.linux-mips.org/patch/15386/ > Agreed. > Admitedly it could probably have a more specific subject line since > there are more similar errors. Does that fix all compile problems ? Seems to me that we'll still need -#include <linux/sched.h> +#include <linux/sched/task_stack.h> or did you prepare a patch for this as well ? Thanks, Guenter > > Cheers > James > >> >> arch/mips/netlogic/common/smp.c: In function 'nlm_boot_secondary': >> arch/mips/netlogic/common/smp.c:157:2: error: >> implicit declaration of function 'task_stack_page' >> >> and more similar errors. >> >> Fixes: f3ac60671954 ("sched/headers: Move task-stack related APIs ...") >> Fixes: f780d89a0e82 ("sched/headers: Remove <asm/ptrace.h> from ...") >> Cc: Ingo Molnar <mingo@kernel.org> >> Signed-off-by: Guenter Roeck <linux@roeck-us.net> >> --- >> v3: Catch more build errors >> >> arch/mips/cavium-octeon/cpu.c | 3 ++- >> arch/mips/cavium-octeon/crypto/octeon-crypto.c | 1 + >> arch/mips/cavium-octeon/smp.c | 2 +- >> arch/mips/kernel/pm.c | 1 + >> arch/mips/kernel/smp-mt.c | 2 +- >> arch/mips/netlogic/common/smp.c | 1 + >> arch/mips/netlogic/xlp/cop2-ex.c | 3 ++- >> arch/mips/power/cpu.c | 1 + >> 8 files changed, 10 insertions(+), 4 deletions(-) >> >> diff --git a/arch/mips/cavium-octeon/cpu.c b/arch/mips/cavium-octeon/cpu.c >> index a5b427909b5c..b826b7a87c57 100644 >> --- a/arch/mips/cavium-octeon/cpu.c >> +++ b/arch/mips/cavium-octeon/cpu.c >> @@ -10,7 +10,8 @@ >> #include <linux/irqflags.h> >> #include <linux/notifier.h> >> #include <linux/prefetch.h> >> -#include <linux/sched.h> >> +#include <linux/ptrace.h> >> +#include <linux/sched/task_stack.h> >> >> #include <asm/cop2.h> >> #include <asm/current.h> >> diff --git a/arch/mips/cavium-octeon/crypto/octeon-crypto.c b/arch/mips/cavium-octeon/crypto/octeon-crypto.c >> index 4d22365844af..cfb4a146cf17 100644 >> --- a/arch/mips/cavium-octeon/crypto/octeon-crypto.c >> +++ b/arch/mips/cavium-octeon/crypto/octeon-crypto.c >> @@ -9,6 +9,7 @@ >> #include <asm/cop2.h> >> #include <linux/export.h> >> #include <linux/interrupt.h> >> +#include <linux/sched/task_stack.h> >> >> #include "octeon-crypto.h" >> >> diff --git a/arch/mips/cavium-octeon/smp.c b/arch/mips/cavium-octeon/smp.c >> index 4b94b7fbafa3..d475c0146347 100644 >> --- a/arch/mips/cavium-octeon/smp.c >> +++ b/arch/mips/cavium-octeon/smp.c >> @@ -10,8 +10,8 @@ >> #include <linux/smp.h> >> #include <linux/interrupt.h> >> #include <linux/kernel_stat.h> >> -#include <linux/sched.h> >> #include <linux/sched/hotplug.h> >> +#include <linux/sched/task_stack.h> >> #include <linux/init.h> >> #include <linux/export.h> >> >> diff --git a/arch/mips/kernel/pm.c b/arch/mips/kernel/pm.c >> index dc814892133c..fab05022ab39 100644 >> --- a/arch/mips/kernel/pm.c >> +++ b/arch/mips/kernel/pm.c >> @@ -11,6 +11,7 @@ >> >> #include <linux/cpu_pm.h> >> #include <linux/init.h> >> +#include <linux/ptrace.h> >> >> #include <asm/dsp.h> >> #include <asm/fpu.h> >> diff --git a/arch/mips/kernel/smp-mt.c b/arch/mips/kernel/smp-mt.c >> index e077ea3e11fb..effc1ed18954 100644 >> --- a/arch/mips/kernel/smp-mt.c >> +++ b/arch/mips/kernel/smp-mt.c >> @@ -18,7 +18,7 @@ >> * Copyright (C) 2006 Ralf Baechle (ralf@linux-mips.org) >> */ >> #include <linux/kernel.h> >> -#include <linux/sched.h> >> +#include <linux/sched/task_stack.h> >> #include <linux/cpumask.h> >> #include <linux/interrupt.h> >> #include <linux/irqchip/mips-gic.h> >> diff --git a/arch/mips/netlogic/common/smp.c b/arch/mips/netlogic/common/smp.c >> index 10d86d54880a..9035558920c1 100644 >> --- a/arch/mips/netlogic/common/smp.c >> +++ b/arch/mips/netlogic/common/smp.c >> @@ -37,6 +37,7 @@ >> #include <linux/init.h> >> #include <linux/smp.h> >> #include <linux/irq.h> >> +#include <linux/sched/task_stack.h> >> >> #include <asm/mmu_context.h> >> >> diff --git a/arch/mips/netlogic/xlp/cop2-ex.c b/arch/mips/netlogic/xlp/cop2-ex.c >> index 52bc5de42005..d990b7fc84aa 100644 >> --- a/arch/mips/netlogic/xlp/cop2-ex.c >> +++ b/arch/mips/netlogic/xlp/cop2-ex.c >> @@ -13,7 +13,8 @@ >> #include <linux/irqflags.h> >> #include <linux/notifier.h> >> #include <linux/prefetch.h> >> -#include <linux/sched.h> >> +#include <linux/ptrace.h> >> +#include <linux/sched/task_stack.h> >> >> #include <asm/cop2.h> >> #include <asm/current.h> >> diff --git a/arch/mips/power/cpu.c b/arch/mips/power/cpu.c >> index 2129e67723ff..6ecccc26bf7f 100644 >> --- a/arch/mips/power/cpu.c >> +++ b/arch/mips/power/cpu.c >> @@ -7,6 +7,7 @@ >> * Author: Hu Hongbing <huhb@lemote.com> >> * Wu Zhangjin <wuzhangjin@gmail.com> >> */ >> +#include <linux/ptrace.h> >> #include <asm/sections.h> >> #include <asm/fpu.h> >> #include <asm/dsp.h> >> -- >> 2.7.4 >> >>
* James Hogan <james.hogan@imgtec.com> wrote: > Hi Guenter, > > On Mon, Mar 06, 2017 at 11:13:55AM -0800, Guenter Roeck wrote: > > Since commit f3ac60671954 ("sched/headers: Move task-stack related > > APIs from <linux/sched.h> to <linux/sched/task_stack.h>") and commit > > f780d89a0e82 ("sched/headers: Remove <asm/ptrace.h> from > > <linux/sched.h>"), various mips builds fail as follows. > > > > arch/mips/kernel/smp-mt.c: In function ‘vsmp_boot_secondary’: > > arch/mips/include/asm/processor.h:384:41: error: > > implicit declaration of function ‘task_stack_page’ > > > > In file included from > > /opt/buildbot/slave/hwmon-testing/build/arch/mips/kernel/pm.c: > > arch/mips/include/asm/fpu.h: In function '__own_fpu': > > arch/mips/include/asm/processor.h:385:31: error: > > invalid application of 'sizeof' to incomplete type 'struct pt_regs' > > This one is in an inline function, so I think it'd affect multiple > includes of <asm/fpu.h> even if __own_fpu isn't used, so I think the > following patch which adds the include ptrace.h in fpu.h is more robust > than adding to the individual c files affected: > https://patchwork.linux-mips.org/patch/15386/ > > Admitedly it could probably have a more specific subject line since > there are more similar errors. Just a quick question: is your MIPS build fix going to be merged and sent to Linus? I can apply it too, and send it to Linus later today, together with a few other sched.h header related build fixes. Assuming it's all properly tested - my limited MIPS defconfig builds worked fine - but MIPS has a lot of build variations. Either way is fine to me. Thanks, Ingo
On Mon, Mar 06, 2017 at 07:30:05PM -0800, Guenter Roeck wrote: > On 03/06/2017 03:20 PM, James Hogan wrote: > > On Mon, Mar 06, 2017 at 11:13:55AM -0800, Guenter Roeck wrote: > >> Since commit f3ac60671954 ("sched/headers: Move task-stack related > >> APIs from <linux/sched.h> to <linux/sched/task_stack.h>") and commit > >> f780d89a0e82 ("sched/headers: Remove <asm/ptrace.h> from > >> <linux/sched.h>"), various mips builds fail as follows. > >> > >> arch/mips/kernel/smp-mt.c: In function ‘vsmp_boot_secondary’: > >> arch/mips/include/asm/processor.h:384:41: error: > >> implicit declaration of function ‘task_stack_page’ > >> > >> In file included from > >> /opt/buildbot/slave/hwmon-testing/build/arch/mips/kernel/pm.c: > >> arch/mips/include/asm/fpu.h: In function '__own_fpu': > >> arch/mips/include/asm/processor.h:385:31: error: > >> invalid application of 'sizeof' to incomplete type 'struct pt_regs' > > > > This one is in an inline function, so I think it'd affect multiple > > includes of <asm/fpu.h> even if __own_fpu isn't used, so I think the > > following patch which adds the include ptrace.h in fpu.h is more robust > > than adding to the individual c files affected: > > https://patchwork.linux-mips.org/patch/15386/ > > > Agreed. > > > Admitedly it could probably have a more specific subject line since > > there are more similar errors. > > Does that fix all compile problems ? Seems to me that we'll still need > > -#include <linux/sched.h> > +#include <linux/sched/task_stack.h> > > or did you prepare a patch for this as well ? It fixed the config I was using at the time. I didn't do a full build test of all configs at the time so didn't fix the above. Cheers James
Hi Ingo, On Tue, Mar 07, 2017 at 08:38:05AM +0100, Ingo Molnar wrote: > Just a quick question: is your MIPS build fix going to be merged and sent to > Linus? I can apply it too, and send it to Linus later today, together with a few > other sched.h header related build fixes. One for Ralf... > Assuming it's all properly tested - my limited MIPS defconfig builds worked fine - > but MIPS has a lot of build variations. If you have a branch with other generic fixes I'm happy to push it to our MIPS buildbot too to double check. Cheers James
Hi Guenter, On Tue, Mar 07, 2017 at 09:33:40AM +0000, James Hogan wrote: > On Mon, Mar 06, 2017 at 07:30:05PM -0800, Guenter Roeck wrote: > > On 03/06/2017 03:20 PM, James Hogan wrote: > > > On Mon, Mar 06, 2017 at 11:13:55AM -0800, Guenter Roeck wrote: > > >> Since commit f3ac60671954 ("sched/headers: Move task-stack related > > >> APIs from <linux/sched.h> to <linux/sched/task_stack.h>") and commit > > >> f780d89a0e82 ("sched/headers: Remove <asm/ptrace.h> from > > >> <linux/sched.h>"), various mips builds fail as follows. > > >> > > >> arch/mips/kernel/smp-mt.c: In function ‘vsmp_boot_secondary’: > > >> arch/mips/include/asm/processor.h:384:41: error: > > >> implicit declaration of function ‘task_stack_page’ > > >> > > >> In file included from > > >> /opt/buildbot/slave/hwmon-testing/build/arch/mips/kernel/pm.c: > > >> arch/mips/include/asm/fpu.h: In function '__own_fpu': > > >> arch/mips/include/asm/processor.h:385:31: error: > > >> invalid application of 'sizeof' to incomplete type 'struct pt_regs' > > > > > > This one is in an inline function, so I think it'd affect multiple > > > includes of <asm/fpu.h> even if __own_fpu isn't used, so I think the > > > following patch which adds the include ptrace.h in fpu.h is more robust > > > than adding to the individual c files affected: > > > https://patchwork.linux-mips.org/patch/15386/ > > > > > Agreed. > > > > > Admitedly it could probably have a more specific subject line since > > > there are more similar errors. > > > > Does that fix all compile problems ? Seems to me that we'll still need > > > > -#include <linux/sched.h> > > +#include <linux/sched/task_stack.h> > > > > or did you prepare a patch for this as well ? > > It fixed the config I was using at the time. I didn't do a full build > test of all configs at the time so didn't fix the above. More specifically your changes to the following files: arch/mips/kernel/pm.c arch/mips/power/cpu.c Don't appear to be necessary with my patch above, but the rest look good to me. With those changes removed: Reviewed-by: James Hogan <james.hogan@imgtec.com> Build testing of that in progress... Thanks James
* James Hogan <james.hogan@imgtec.com> wrote: > Hi Ingo, > > On Tue, Mar 07, 2017 at 08:38:05AM +0100, Ingo Molnar wrote: > > Just a quick question: is your MIPS build fix going to be merged and sent to > > Linus? I can apply it too, and send it to Linus later today, together with a few > > other sched.h header related build fixes. > > One for Ralf... Ralf, what's your preference? > > Assuming it's all properly tested - my limited MIPS defconfig builds worked fine - > > but MIPS has a lot of build variations. > > If you have a branch with other generic fixes I'm happy to push it to > our MIPS buildbot too to double check. So I have not applied your patch yet (can do it with ack from Ralf), but all the other fixes that are pending can be found in: git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/urgent It's these commits: bb35e4515411 drivers/char/nwbutton: Fix build breakage caused by include file reshuffling 80aa1a54f054 h8300: Fix build breakage caused by header file changes 1fbdbcea8005 avr32: Fix build error caused by include file reshuffling Thanks, Ingo
diff --git a/arch/mips/cavium-octeon/cpu.c b/arch/mips/cavium-octeon/cpu.c index a5b427909b5c..b826b7a87c57 100644 --- a/arch/mips/cavium-octeon/cpu.c +++ b/arch/mips/cavium-octeon/cpu.c @@ -10,7 +10,8 @@ #include <linux/irqflags.h> #include <linux/notifier.h> #include <linux/prefetch.h> -#include <linux/sched.h> +#include <linux/ptrace.h> +#include <linux/sched/task_stack.h> #include <asm/cop2.h> #include <asm/current.h> diff --git a/arch/mips/cavium-octeon/crypto/octeon-crypto.c b/arch/mips/cavium-octeon/crypto/octeon-crypto.c index 4d22365844af..cfb4a146cf17 100644 --- a/arch/mips/cavium-octeon/crypto/octeon-crypto.c +++ b/arch/mips/cavium-octeon/crypto/octeon-crypto.c @@ -9,6 +9,7 @@ #include <asm/cop2.h> #include <linux/export.h> #include <linux/interrupt.h> +#include <linux/sched/task_stack.h> #include "octeon-crypto.h" diff --git a/arch/mips/cavium-octeon/smp.c b/arch/mips/cavium-octeon/smp.c index 4b94b7fbafa3..d475c0146347 100644 --- a/arch/mips/cavium-octeon/smp.c +++ b/arch/mips/cavium-octeon/smp.c @@ -10,8 +10,8 @@ #include <linux/smp.h> #include <linux/interrupt.h> #include <linux/kernel_stat.h> -#include <linux/sched.h> #include <linux/sched/hotplug.h> +#include <linux/sched/task_stack.h> #include <linux/init.h> #include <linux/export.h> diff --git a/arch/mips/kernel/pm.c b/arch/mips/kernel/pm.c index dc814892133c..fab05022ab39 100644 --- a/arch/mips/kernel/pm.c +++ b/arch/mips/kernel/pm.c @@ -11,6 +11,7 @@ #include <linux/cpu_pm.h> #include <linux/init.h> +#include <linux/ptrace.h> #include <asm/dsp.h> #include <asm/fpu.h> diff --git a/arch/mips/kernel/smp-mt.c b/arch/mips/kernel/smp-mt.c index e077ea3e11fb..effc1ed18954 100644 --- a/arch/mips/kernel/smp-mt.c +++ b/arch/mips/kernel/smp-mt.c @@ -18,7 +18,7 @@ * Copyright (C) 2006 Ralf Baechle (ralf@linux-mips.org) */ #include <linux/kernel.h> -#include <linux/sched.h> +#include <linux/sched/task_stack.h> #include <linux/cpumask.h> #include <linux/interrupt.h> #include <linux/irqchip/mips-gic.h> diff --git a/arch/mips/netlogic/common/smp.c b/arch/mips/netlogic/common/smp.c index 10d86d54880a..9035558920c1 100644 --- a/arch/mips/netlogic/common/smp.c +++ b/arch/mips/netlogic/common/smp.c @@ -37,6 +37,7 @@ #include <linux/init.h> #include <linux/smp.h> #include <linux/irq.h> +#include <linux/sched/task_stack.h> #include <asm/mmu_context.h> diff --git a/arch/mips/netlogic/xlp/cop2-ex.c b/arch/mips/netlogic/xlp/cop2-ex.c index 52bc5de42005..d990b7fc84aa 100644 --- a/arch/mips/netlogic/xlp/cop2-ex.c +++ b/arch/mips/netlogic/xlp/cop2-ex.c @@ -13,7 +13,8 @@ #include <linux/irqflags.h> #include <linux/notifier.h> #include <linux/prefetch.h> -#include <linux/sched.h> +#include <linux/ptrace.h> +#include <linux/sched/task_stack.h> #include <asm/cop2.h> #include <asm/current.h> diff --git a/arch/mips/power/cpu.c b/arch/mips/power/cpu.c index 2129e67723ff..6ecccc26bf7f 100644 --- a/arch/mips/power/cpu.c +++ b/arch/mips/power/cpu.c @@ -7,6 +7,7 @@ * Author: Hu Hongbing <huhb@lemote.com> * Wu Zhangjin <wuzhangjin@gmail.com> */ +#include <linux/ptrace.h> #include <asm/sections.h> #include <asm/fpu.h> #include <asm/dsp.h>
Since commit f3ac60671954 ("sched/headers: Move task-stack related APIs from <linux/sched.h> to <linux/sched/task_stack.h>") and commit f780d89a0e82 ("sched/headers: Remove <asm/ptrace.h> from <linux/sched.h>"), various mips builds fail as follows. arch/mips/kernel/smp-mt.c: In function ‘vsmp_boot_secondary’: arch/mips/include/asm/processor.h:384:41: error: implicit declaration of function ‘task_stack_page’ In file included from /opt/buildbot/slave/hwmon-testing/build/arch/mips/kernel/pm.c: arch/mips/include/asm/fpu.h: In function '__own_fpu': arch/mips/include/asm/processor.h:385:31: error: invalid application of 'sizeof' to incomplete type 'struct pt_regs' arch/mips/netlogic/common/smp.c: In function 'nlm_boot_secondary': arch/mips/netlogic/common/smp.c:157:2: error: implicit declaration of function 'task_stack_page' and more similar errors. Fixes: f3ac60671954 ("sched/headers: Move task-stack related APIs ...") Fixes: f780d89a0e82 ("sched/headers: Remove <asm/ptrace.h> from ...") Cc: Ingo Molnar <mingo@kernel.org> Signed-off-by: Guenter Roeck <linux@roeck-us.net> --- v3: Catch more build errors arch/mips/cavium-octeon/cpu.c | 3 ++- arch/mips/cavium-octeon/crypto/octeon-crypto.c | 1 + arch/mips/cavium-octeon/smp.c | 2 +- arch/mips/kernel/pm.c | 1 + arch/mips/kernel/smp-mt.c | 2 +- arch/mips/netlogic/common/smp.c | 1 + arch/mips/netlogic/xlp/cop2-ex.c | 3 ++- arch/mips/power/cpu.c | 1 + 8 files changed, 10 insertions(+), 4 deletions(-)