Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 96800216 authored by Alexander Nyberg's avatar Alexander Nyberg Committed by Linus Torvalds
Browse files

[PATCH] x86-64: use proper VM_FAULT_xxx macros



x86_64 had hardcoded the VM_ numbers so it broke down when the numbers
were changed.

Signed-off-by: default avatarAlexander Nyberg <alexn@telia.com>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 1260f801
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -439,13 +439,13 @@ asmlinkage void do_page_fault(struct pt_regs *regs, unsigned long error_code)
	 * the fault.
	 */
	switch (handle_mm_fault(mm, vma, address, write)) {
	case 1:
	case VM_FAULT_MINOR:
		tsk->min_flt++;
		break;
	case 2:
	case VM_FAULT_MAJOR:
		tsk->maj_flt++;
		break;
	case 0:
	case VM_FAULT_SIGBUS:
		goto do_sigbus;
	default:
		goto out_of_memory;