diff options
| author | Dave Jones <davej@redhat.com> | 2006-12-12 17:41:41 -0500 | 
|---|---|---|
| committer | Dave Jones <davej@redhat.com> | 2006-12-12 17:41:41 -0500 | 
| commit | c4366889dda8110247be59ca41fddb82951a8c26 (patch) | |
| tree | 705c1a996bed8fd48ce94ff33ec9fd00f9b94875 /arch/m32r/mm/fault.c | |
| parent | db2fb9db5735cc532fd4fc55e94b9a3c3750378e (diff) | |
| parent | e1036502e5263851259d147771226161e5ccc85a (diff) | |
Merge ../linus
Conflicts:
	drivers/cpufreq/cpufreq.c
Diffstat (limited to 'arch/m32r/mm/fault.c')
| -rw-r--r-- | arch/m32r/mm/fault.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/arch/m32r/mm/fault.c b/arch/m32r/mm/fault.c index 8d5f551b575..9b9feb0f161 100644 --- a/arch/m32r/mm/fault.c +++ b/arch/m32r/mm/fault.c @@ -173,7 +173,7 @@ asmlinkage void do_page_fault(struct pt_regs *regs, unsigned long error_code,  		goto good_area;  	if (!(vma->vm_flags & VM_GROWSDOWN))  		goto bad_area; -#if 0 +  	if (error_code & ACE_USERMODE) {  		/*  		 * accessing the stack below "spu" is always a bug. @@ -184,7 +184,7 @@ asmlinkage void do_page_fault(struct pt_regs *regs, unsigned long error_code,  		if (address + 4 < regs->spu)  			goto bad_area;  	} -#endif +  	if (expand_stack(vma, address))  		goto bad_area;  /* | 
