pat.h 529 字节
Newer Older
V
Vegard Nossum 已提交
1 2
#ifndef ASM_X86__PAT_H
#define ASM_X86__PAT_H
3 4 5

#include <linux/types.h>

6
#ifdef CONFIG_X86_PAT
7
extern int pat_enabled;
8 9
extern void validate_pat_support(struct cpuinfo_x86 *c);
#else
10
static const int pat_enabled;
11 12
static inline void validate_pat_support(struct cpuinfo_x86 *c) { }
#endif
13 14 15 16 17 18 19

extern void pat_init(void);

extern int reserve_memtype(u64 start, u64 end,
		unsigned long req_type, unsigned long *ret_type);
extern int free_memtype(u64 start, u64 end);

20 21
extern void pat_disable(char *reason);

V
Vegard Nossum 已提交
22
#endif /* ASM_X86__PAT_H */