Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 277228
b: refs/heads/master
c: a95f881
h: refs/heads/master
v: v3
  • Loading branch information
Paul E. McKenney authored and Paul E. McKenney committed Dec 11, 2011
1 parent e6c9568 commit 0a13fbc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 77aeeebd7b5483582d0eb6e3fd2894771d1fd8e5
refs/heads/master: a95f8817f8afa75ab41728bd1bb65024c65c91c3
4 changes: 2 additions & 2 deletions trunk/arch/tile/mm/fault.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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");
}

/*
Expand Down

0 comments on commit 0a13fbc

Please sign in to comment.