fixmap.h (4944dd62de21230af039eda7cd218e9a09021d11) | fixmap.h (fd9409343521eac22b6ed51686128a643c7c976b) |
---|---|
1#ifndef _ASM_X86_FIXMAP_H 2#define _ASM_X86_FIXMAP_H 3 4#ifdef CONFIG_X86_32 5# include "fixmap_32.h" 6#else 7# include "fixmap_64.h" 8#endif 9 10extern int fixmaps_set; 11 | 1#ifndef _ASM_X86_FIXMAP_H 2#define _ASM_X86_FIXMAP_H 3 4#ifdef CONFIG_X86_32 5# include "fixmap_32.h" 6#else 7# include "fixmap_64.h" 8#endif 9 10extern int fixmaps_set; 11 |
12extern pte_t *kmap_pte; 13extern pgprot_t kmap_prot; 14extern pte_t *pkmap_page_table; 15 |
|
12void __native_set_fixmap(enum fixed_addresses idx, pte_t pte); 13void native_set_fixmap(enum fixed_addresses idx, 14 unsigned long phys, pgprot_t flags); 15 16#ifndef CONFIG_PARAVIRT 17static inline void __set_fixmap(enum fixed_addresses idx, 18 unsigned long phys, pgprot_t flags) 19{ --- 49 unchanged lines hidden --- | 16void __native_set_fixmap(enum fixed_addresses idx, pte_t pte); 17void native_set_fixmap(enum fixed_addresses idx, 18 unsigned long phys, pgprot_t flags); 19 20#ifndef CONFIG_PARAVIRT 21static inline void __set_fixmap(enum fixed_addresses idx, 22 unsigned long phys, pgprot_t flags) 23{ --- 49 unchanged lines hidden --- |