diff options
author | Paul Mundt <lethal@linux-sh.org> | 2006-09-27 02:30:24 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2006-09-27 02:30:24 -0400 |
commit | f647d33f879d258de4ab2559975bd6eebda2033e (patch) | |
tree | 15364f27dea1203004ae7016c676332032c17a7d | |
parent | c470662854ff94d44bf8c192cefac3efa33db676 (diff) |
sh: Fix split ptlock for user mappings in __do_page_fault().
There was a bug that got introduced when the split ptlock changes
went in where mm could be unintialized for user mappings, this
fixes it up..
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
-rw-r--r-- | arch/sh/mm/fault.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/arch/sh/mm/fault.c b/arch/sh/mm/fault.c index 7a03ffe6dadd..dc461d2bc183 100644 --- a/arch/sh/mm/fault.c +++ b/arch/sh/mm/fault.c | |||
@@ -210,10 +210,11 @@ asmlinkage int __do_page_fault(struct pt_regs *regs, unsigned long writeaccess, | |||
210 | * are always mapped, whether it be due to legacy behaviour in | 210 | * are always mapped, whether it be due to legacy behaviour in |
211 | * 29-bit mode, or due to PMB configuration in 32-bit mode. | 211 | * 29-bit mode, or due to PMB configuration in 32-bit mode. |
212 | */ | 212 | */ |
213 | if (address >= P3SEG && address < P3_ADDR_MAX) | 213 | if (address >= P3SEG && address < P3_ADDR_MAX) { |
214 | pgd = pgd_offset_k(address); | 214 | pgd = pgd_offset_k(address); |
215 | else { | 215 | mm = NULL; |
216 | if (unlikely(address >= TASK_SIZE || !current->mm)) | 216 | } else { |
217 | if (unlikely(address >= TASK_SIZE || !(mm = current->mm))) | ||
217 | return 1; | 218 | return 1; |
218 | 219 | ||
219 | pgd = pgd_offset(current->mm, address); | 220 | pgd = pgd_offset(current->mm, address); |