-
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: 356207 b: refs/heads/master c: 22c8ca2 h: refs/heads/master i: 356205: f02e379 356203: eb758bf 356199: f5c7269 356191: 697963c v: v3
- Loading branch information
Yinghai Lu
authored and
H. Peter Anvin
committed
Nov 17, 2012
1 parent
2644525
commit 4509840
Showing
3 changed files
with
27 additions
and
14 deletions.
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: 6f80b68e9e515547edbacb0c37491730bf766db5 | ||
refs/heads/master: 22c8ca2ac256bb681be791858b35502b5d37e73b |
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
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,6 +1,10 @@ | ||
#ifndef __X86_MM_INTERNAL_H | ||
#define __X86_MM_INTERNAL_H | ||
|
||
void *alloc_low_page(void); | ||
void *alloc_low_pages(unsigned int num); | ||
static inline void *alloc_low_page(void) | ||
{ | ||
return alloc_low_pages(1); | ||
} | ||
|
||
#endif /* __X86_MM_INTERNAL_H */ |