-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 356232 b: refs/heads/master c: aece278 h: refs/heads/master v: v3
- Loading branch information
Yinghai Lu
authored and
H. Peter Anvin
committed
Jan 29, 2013
1 parent
69c8d43
commit d6dd691
Showing
3 changed files
with
84 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 231b3642a3c73fb9f1221dcb96fe8c0fbb658dfd | ||
refs/heads/master: aece27851d44bde62fc0587e06f5e8e27fd96e5f |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,14 @@ | ||
#ifndef _ASM_X86_INIT_H | ||
#define _ASM_X86_INIT_H | ||
|
||
struct x86_mapping_info { | ||
void *(*alloc_pgt_page)(void *); /* allocate buf for page table */ | ||
void *context; /* context for alloc_pgt_page */ | ||
unsigned long pmd_flag; /* page flag for PMD entry */ | ||
bool kernel_mapping; /* kernel mapping or ident mapping */ | ||
}; | ||
|
||
int kernel_ident_mapping_init(struct x86_mapping_info *info, pgd_t *pgd_page, | ||
unsigned long addr, unsigned long end); | ||
|
||
#endif /* _ASM_X86_INIT_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters