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