Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 42659
b: refs/heads/master
c: 6edaf68
h: refs/heads/master
i:
  42657: 4bada93
  42655: 515a99d
v: v3
  • Loading branch information
Peter Zijlstra authored and Linus Torvalds committed Dec 7, 2006
1 parent b2ca2bb commit 46e101e
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 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: 3395ee0588795b0b3bd889c260e55959cf2b61f5
refs/heads/master: 6edaf68a87d17570790fd55f0c451a29ec1d6703
2 changes: 1 addition & 1 deletion trunk/arch/alpha/mm/fault.c
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ do_page_fault(unsigned long address, unsigned long mmcsr,

/* If we're in an interrupt context, or have no user context,
we must not take the fault. */
if (!mm || in_interrupt())
if (!mm || in_atomic())
goto no_context;

#ifdef CONFIG_ALPHA_LARGE_VMALLOC
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/arm/mm/fault.c
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ do_page_fault(unsigned long addr, unsigned int fsr, struct pt_regs *regs)
* If we're in an interrupt or have no user
* context, we must not take the fault..
*/
if (in_interrupt() || !mm)
if (in_atomic() || !mm)
goto no_context;

/*
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/arm26/mm/fault.c
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ int do_page_fault(unsigned long addr, unsigned int fsr, struct pt_regs *regs)
* If we're in an interrupt or have no user
* context, we must not take the fault..
*/
if (in_interrupt() || !mm)
if (in_atomic() || !mm)
goto no_context;

down_read(&mm->mmap_sem);
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/cris/mm/fault.c
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ do_page_fault(unsigned long address, struct pt_regs *regs,
* context, we must not take the fault..
*/

if (in_interrupt() || !mm)
if (in_atomic() || !mm)
goto no_context;

down_read(&mm->mmap_sem);
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/frv/mm/fault.c
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ asmlinkage void do_page_fault(int datammu, unsigned long esr0, unsigned long ear
* If we're in an interrupt or have no user
* context, we must not take the fault..
*/
if (in_interrupt() || !mm)
if (in_atomic() || !mm)
goto no_context;

down_read(&mm->mmap_sem);
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/m68k/mm/fault.c
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ int do_page_fault(struct pt_regs *regs, unsigned long address,
* If we're in an interrupt or have no user
* context, we must not take the fault..
*/
if (in_interrupt() || !mm)
if (in_atomic() || !mm)
goto no_context;

down_read(&mm->mmap_sem);
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/parisc/mm/fault.c
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ void do_page_fault(struct pt_regs *regs, unsigned long code,
const struct exception_table_entry *fix;
unsigned long acc_type;

if (in_interrupt() || !mm)
if (in_atomic() || !mm)
goto no_context;

down_read(&mm->mmap_sem);
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/sh64/mm/fault.c
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ asmlinkage void do_page_fault(struct pt_regs *regs, unsigned long writeaccess,
* If we're in an interrupt or have no user
* context, we must not take the fault..
*/
if (in_interrupt() || !mm)
if (in_atomic() || !mm)
goto no_context;

/* TLB misses upon some cache flushes get done under cli() */
Expand Down

0 comments on commit 46e101e

Please sign in to comment.