diff --git a/[refs] b/[refs] index 6c6ac09bbd5f..4555c78c6283 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 77aeeebd7b5483582d0eb6e3fd2894771d1fd8e5 +refs/heads/master: a95f8817f8afa75ab41728bd1bb65024c65c91c3 diff --git a/trunk/arch/tile/mm/fault.c b/trunk/arch/tile/mm/fault.c index 25b7b90fd620..c1eaaa1fcc20 100644 --- a/trunk/arch/tile/mm/fault.c +++ b/trunk/arch/tile/mm/fault.c @@ -54,7 +54,7 @@ static noinline void force_sig_info_fault(const char *type, int si_signo, if (unlikely(tsk->pid < 2)) { panic("Signal %d (code %d) at %#lx sent to %s!", si_signo, si_code & 0xffff, address, - tsk->pid ? "init" : "the idle task"); + is_idle_task(tsk) ? "the idle task" : "init"); } info.si_signo = si_signo; @@ -515,7 +515,7 @@ static int handle_page_fault(struct pt_regs *regs, if (unlikely(tsk->pid < 2)) { panic("Kernel page fault running %s!", - tsk->pid ? "init" : "the idle task"); + is_idle_task(tsk) ? "the idle task" : "init"); } /*