diff options
author | Nick Piggin <npiggin@suse.de> | 2007-07-19 04:47:05 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-19 13:04:41 -0400 |
commit | 83c54070ee1a2d05c89793884bea1a03f2851ed4 (patch) | |
tree | dc732f5a9b93fb7004ed23f551bd98b77cc580e0 /arch/powerpc | |
parent | d0217ac04ca6591841e5665f518e38064f4e65bd (diff) |
mm: fault feedback #2
This patch completes Linus's wish that the fault return codes be made into
bit flags, which I agree makes everything nicer. This requires requires
all handle_mm_fault callers to be modified (possibly the modifications
should go further and do things like fault accounting in handle_mm_fault --
however that would be for another patch).
[akpm@linux-foundation.org: fix alpha build]
[akpm@linux-foundation.org: fix s390 build]
[akpm@linux-foundation.org: fix sparc build]
[akpm@linux-foundation.org: fix sparc64 build]
[akpm@linux-foundation.org: fix ia64 build]
Signed-off-by: Nick Piggin <npiggin@suse.de>
Cc: Richard Henderson <rth@twiddle.net>
Cc: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
Cc: Russell King <rmk@arm.linux.org.uk>
Cc: Ian Molton <spyro@f2s.com>
Cc: Bryan Wu <bryan.wu@analog.com>
Cc: Mikael Starvik <starvik@axis.com>
Cc: David Howells <dhowells@redhat.com>
Cc: Yoshinori Sato <ysato@users.sourceforge.jp>
Cc: "Luck, Tony" <tony.luck@intel.com>
Cc: Hirokazu Takata <takata@linux-m32r.org>
Cc: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Roman Zippel <zippel@linux-m68k.org>
Cc: Greg Ungerer <gerg@uclinux.org>
Cc: Matthew Wilcox <willy@debian.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Heiko Carstens <heiko.carstens@de.ibm.com>
Cc: Martin Schwidefsky <schwidefsky@de.ibm.com>
Cc: Paul Mundt <lethal@linux-sh.org>
Cc: Kazumoto Kojima <kkojima@rr.iij4u.or.jp>
Cc: Richard Curnow <rc@rc0.org.uk>
Cc: William Lee Irwin III <wli@holomorphy.com>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Jeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Cc: Miles Bader <uclinux-v850@lsi.nec.co.jp>
Cc: Chris Zankel <chris@zankel.net>
Acked-by: Kyle McMartin <kyle@mcmartin.ca>
Acked-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
Acked-by: Ralf Baechle <ralf@linux-mips.org>
Acked-by: Andi Kleen <ak@muc.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
[ Still apparently needs some ARM and PPC loving - Linus ]
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/mm/fault.c | 26 | ||||
-rw-r--r-- | arch/powerpc/platforms/cell/spufs/fault.c | 28 |
2 files changed, 24 insertions, 30 deletions
diff --git a/arch/powerpc/mm/fault.c b/arch/powerpc/mm/fault.c index 0ece51310bfe..3767211b3d0f 100644 --- a/arch/powerpc/mm/fault.c +++ b/arch/powerpc/mm/fault.c | |||
@@ -145,7 +145,7 @@ int __kprobes do_page_fault(struct pt_regs *regs, unsigned long address, | |||
145 | struct mm_struct *mm = current->mm; | 145 | struct mm_struct *mm = current->mm; |
146 | siginfo_t info; | 146 | siginfo_t info; |
147 | int code = SEGV_MAPERR; | 147 | int code = SEGV_MAPERR; |
148 | int is_write = 0; | 148 | int is_write = 0, ret; |
149 | int trap = TRAP(regs); | 149 | int trap = TRAP(regs); |
150 | int is_exec = trap == 0x400; | 150 | int is_exec = trap == 0x400; |
151 | 151 | ||
@@ -330,22 +330,18 @@ good_area: | |||
330 | * the fault. | 330 | * the fault. |
331 | */ | 331 | */ |
332 | survive: | 332 | survive: |
333 | switch (handle_mm_fault(mm, vma, address, is_write)) { | 333 | ret = handle_mm_fault(mm, vma, address, is_write); |
334 | 334 | if (unlikely(ret & VM_FAULT_ERROR)) { | |
335 | case VM_FAULT_MINOR: | 335 | if (ret & VM_FAULT_OOM) |
336 | current->min_flt++; | 336 | goto out_of_memory; |
337 | break; | 337 | else if (ret & VM_FAULT_SIGBUS) |
338 | case VM_FAULT_MAJOR: | 338 | goto do_sigbus; |
339 | current->maj_flt++; | ||
340 | break; | ||
341 | case VM_FAULT_SIGBUS: | ||
342 | goto do_sigbus; | ||
343 | case VM_FAULT_OOM: | ||
344 | goto out_of_memory; | ||
345 | default: | ||
346 | BUG(); | 339 | BUG(); |
347 | } | 340 | } |
348 | 341 | if (ret & VM_FAULT_MAJOR) | |
342 | current->maj_flt++; | ||
343 | else | ||
344 | current->min_flt++; | ||
349 | up_read(&mm->mmap_sem); | 345 | up_read(&mm->mmap_sem); |
350 | return 0; | 346 | return 0; |
351 | 347 | ||
diff --git a/arch/powerpc/platforms/cell/spufs/fault.c b/arch/powerpc/platforms/cell/spufs/fault.c index e064d0c0d80e..07f88de0544d 100644 --- a/arch/powerpc/platforms/cell/spufs/fault.c +++ b/arch/powerpc/platforms/cell/spufs/fault.c | |||
@@ -74,23 +74,21 @@ good_area: | |||
74 | goto bad_area; | 74 | goto bad_area; |
75 | } | 75 | } |
76 | ret = 0; | 76 | ret = 0; |
77 | *flt = handle_mm_fault(mm, vma, ea, is_write); | 77 | fault = handle_mm_fault(mm, vma, ea, is_write); |
78 | switch (*flt) { | 78 | if (unlikely(fault & VM_FAULT_ERROR)) { |
79 | case VM_FAULT_MINOR: | 79 | if (fault & VM_FAULT_OOM) { |
80 | current->min_flt++; | 80 | ret = -ENOMEM; |
81 | break; | 81 | goto bad_area; |
82 | case VM_FAULT_MAJOR: | 82 | } else if (fault & VM_FAULT_SIGBUS) { |
83 | current->maj_flt++; | 83 | ret = -EFAULT; |
84 | break; | 84 | goto bad_area; |
85 | case VM_FAULT_SIGBUS: | 85 | } |
86 | ret = -EFAULT; | ||
87 | goto bad_area; | ||
88 | case VM_FAULT_OOM: | ||
89 | ret = -ENOMEM; | ||
90 | goto bad_area; | ||
91 | default: | ||
92 | BUG(); | 86 | BUG(); |
93 | } | 87 | } |
88 | if (fault & VM_FAULT_MAJOR) | ||
89 | current->maj_flt++; | ||
90 | else | ||
91 | current->min_flt++; | ||
94 | up_read(&mm->mmap_sem); | 92 | up_read(&mm->mmap_sem); |
95 | return ret; | 93 | return ret; |
96 | 94 | ||