From: Ingo Molnar Date: Fri, 20 Feb 2009 22:22:34 +0000 (+0100) Subject: x86, mm: fault.c, remove #ifdef from do_page_fault() X-Git-Tag: v2.6.30-rc1~211^2~43^5~5 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c3731c68668325abddee8665018c74c7156a57be;p=pandora-kernel.git x86, mm: fault.c, remove #ifdef from do_page_fault() Impact: cleanup do_page_fault() has this ugly #ifdef in its prototype: #ifdef CONFIG_X86_64 asmlinkage #endif void __kprobes do_page_fault(struct pt_regs *regs, unsigned long error_code) Replace it with 'dotraplinkage' which maps to exactly the above construct: nothing on 32-bit and asmlinkage on 64-bit. Cc: Linus Torvalds Signed-off-by: Ingo Molnar --- Reading git-diff-tree failed