aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/mm
diff options
context:
space:
mode:
authorHarvey Harrison <harvey.harrison@gmail.com>2008-01-30 07:31:17 -0500
committerIngo Molnar <mingo@elte.hu>2008-01-30 07:31:17 -0500
commit75604d7f7f1ee93e4d19d9e19f4497b7ed842f2a (patch)
treeca8f9af34d70e237b78ca47c225fbbbbe1a64fac /arch/x86/mm
parent56c4da454de1264e381256f658f61b9ef690dd21 (diff)
x86: remove all definitions with fastcall
fastcall is always defined to be empty, remove it from arch/x86 Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/mm')
-rw-r--r--arch/x86/mm/fault_32.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/x86/mm/fault_32.c b/arch/x86/mm/fault_32.c
index ef5ab2b925c4..8aed912b04ec 100644
--- a/arch/x86/mm/fault_32.c
+++ b/arch/x86/mm/fault_32.c
@@ -214,7 +214,7 @@ static noinline void force_sig_info_fault(int si_signo, int si_code,
214 force_sig_info(si_signo, &info, tsk); 214 force_sig_info(si_signo, &info, tsk);
215} 215}
216 216
217fastcall void do_invalid_op(struct pt_regs *, unsigned long); 217void do_invalid_op(struct pt_regs *, unsigned long);
218 218
219static inline pmd_t *vmalloc_sync_one(pgd_t *pgd, unsigned long address) 219static inline pmd_t *vmalloc_sync_one(pgd_t *pgd, unsigned long address)
220{ 220{
@@ -293,8 +293,7 @@ int show_unhandled_signals = 1;
293 * bit 3 == 1 means use of reserved bit detected 293 * bit 3 == 1 means use of reserved bit detected
294 * bit 4 == 1 means fault was an instruction fetch 294 * bit 4 == 1 means fault was an instruction fetch
295 */ 295 */
296fastcall void __kprobes do_page_fault(struct pt_regs *regs, 296void __kprobes do_page_fault(struct pt_regs *regs, unsigned long error_code)
297 unsigned long error_code)
298{ 297{
299 struct task_struct *tsk; 298 struct task_struct *tsk;
300 struct mm_struct *mm; 299 struct mm_struct *mm;