2012-11-17 03:39:01 +00:00
|
|
|
#ifndef __X86_MM_INTERNAL_H
|
|
|
|
#define __X86_MM_INTERNAL_H
|
|
|
|
|
2012-11-17 03:39:04 +00:00
|
|
|
void *alloc_low_pages(unsigned int num);
|
|
|
|
static inline void *alloc_low_page(void)
|
|
|
|
{
|
|
|
|
return alloc_low_pages(1);
|
|
|
|
}
|
2012-11-17 03:39:01 +00:00
|
|
|
|
|
|
|
#endif /* __X86_MM_INTERNAL_H */
|