vfs: Move mark_inode_dirty() from under page lock in generic_write_end()
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / asm-x86 / proto.h
blob6c8b41b03f6def5593696d12752c3627028e10b3
1 #ifndef _ASM_X8664_PROTO_H
2 #define _ASM_X8664_PROTO_H 1
4 #include <asm/ldt.h>
6 /* misc architecture specific prototypes */
8 extern void early_idt_handler(void);
10 extern void system_call(void);
11 extern void syscall_init(void);
13 extern void ia32_syscall(void);
14 extern void ia32_cstar_target(void);
15 extern void ia32_sysenter_target(void);
17 extern void reserve_bootmem_generic(unsigned long phys, unsigned len);
19 extern void syscall32_cpu_init(void);
21 extern void check_efer(void);
23 #ifdef CONFIG_X86_BIOS_REBOOT
24 extern int reboot_force;
25 #else
26 static const int reboot_force = 0;
27 #endif
29 long do_arch_prctl(struct task_struct *task, int code, unsigned long addr);
31 #define round_up(x, y) (((x) + (y) - 1) & ~((y) - 1))
32 #define round_down(x, y) ((x) & ~((y) - 1))
34 #endif