blob: 4009f6534f521a64138dd6796c14a2c38a791f85 [file] [log] [blame]
H. Peter Anvin1965aae2008-10-22 22:26:29 -07001#ifndef _ASM_X86_PROTO_H
2#define _ASM_X86_PROTO_H
Linus Torvalds1da177e2005-04-16 15:20:36 -07003
4#include <asm/ldt.h>
5
6/* misc architecture specific prototypes */
7
H. Peter Anvin5bd085b2009-11-16 13:55:31 -08008void early_idt_handler(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -07009
H. Peter Anvin5bd085b2009-11-16 13:55:31 -080010void system_call(void);
11void syscall_init(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
H. Peter Anvin5bd085b2009-11-16 13:55:31 -080013void ia32_syscall(void);
14void ia32_cstar_target(void);
15void ia32_sysenter_target(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
H. Peter Anvin5bd085b2009-11-16 13:55:31 -080017void syscall32_cpu_init(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
H. Peter Anvin5bd085b2009-11-16 13:55:31 -080019void x86_configure_nx(void);
20void x86_report_nx(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Linus Torvalds1da177e2005-04-16 15:20:36 -070022extern int reboot_force;
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Linus Torvalds1da177e2005-04-16 15:20:36 -070024long do_arch_prctl(struct task_struct *task, int code, unsigned long addr);
25
Linus Torvalds43644672009-07-02 12:05:10 -070026/*
27 * This looks more complex than it should be. But we need to
28 * get the type for the ~ right in round_down (it needs to be
29 * as wide as the result!), and we want to evaluate the macro
30 * arguments just once each.
31 */
32#define __round_mask(x,y) ((__typeof__(x))((y)-1))
33#define round_up(x,y) ((((x)-1) | __round_mask(x,y))+1)
34#define round_down(x,y) ((x) & ~__round_mask(x,y))
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
H. Peter Anvin1965aae2008-10-22 22:26:29 -070036#endif /* _ASM_X86_PROTO_H */