Message ID | 1612687956-28075-1-git-send-email-hejinyang@loongson.cn (mailing list archive) |
---|---|
State | Accepted |
Commit | 9f0781bac9f3d75d10d6a862e18ff172ce07c202 |
Headers | show |
Series | MIPS: process: Fix no previous prototype warning | expand |
On Sun, Feb 07, 2021 at 04:52:36PM +0800, Jinyang He wrote: > unwind_stack_by_address and unwind_stack need <asm/stacktrace.h>. > arch_align_stack needs <asm/exec.h> > > link: https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org/thread/ZPL2RRA6RZKRQZI5IGOVLFXN2GVZBN3L/ > Fixes: ("MIPS: process: Remove unnecessary headers inclusion") this Fixes is broken, it's missing a git hash. But there is no reason for a fixes tag, because it "only" removed a warning, but doesn't fix a bug. So I've removed it while applying the patch. > Reported-by: kernel test robot <lkp@intel.com> > Signed-off-by: Jinyang He <hejinyang@loongson.cn> > --- > arch/mips/kernel/process.c | 2 ++ > 1 file changed, 2 insertions(+) applied to mips-next. Thomas.
diff --git a/arch/mips/kernel/process.c b/arch/mips/kernel/process.c index 0c5bc06..2e591df 100644 --- a/arch/mips/kernel/process.c +++ b/arch/mips/kernel/process.c @@ -26,6 +26,7 @@ #include <asm/asm.h> #include <asm/dsemul.h> #include <asm/dsp.h> +#include <asm/exec.h> #include <asm/fpu.h> #include <asm/inst.h> #include <asm/irq.h> @@ -36,6 +37,7 @@ #include <asm/mipsregs.h> #include <asm/processor.h> #include <asm/reg.h> +#include <asm/stacktrace.h> #ifdef CONFIG_HOTPLUG_CPU void arch_cpu_idle_dead(void)
unwind_stack_by_address and unwind_stack need <asm/stacktrace.h>. arch_align_stack needs <asm/exec.h> link: https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org/thread/ZPL2RRA6RZKRQZI5IGOVLFXN2GVZBN3L/ Fixes: ("MIPS: process: Remove unnecessary headers inclusion") Reported-by: kernel test robot <lkp@intel.com> Signed-off-by: Jinyang He <hejinyang@loongson.cn> --- arch/mips/kernel/process.c | 2 ++ 1 file changed, 2 insertions(+)