2013-02-23 09:41:48 +00:00
|
|
|
#ifndef _LINUX_MM_H
|
|
|
|
#define _LINUX_MM_H
|
2013-02-13 08:23:54 +00:00
|
|
|
|
2013-07-02 16:05:26 +00:00
|
|
|
#include <kernel.h>
|
2013-02-23 09:41:48 +00:00
|
|
|
|
|
|
|
#define VM_NORESERVE 0x00200000
|
2013-07-02 16:05:26 +00:00
|
|
|
|
|
|
|
#define nth_page(page,n) ((void*)(((page_to_phys(page)>>12)+(n))<<12))
|
|
|
|
|
|
|
|
#define page_to_pfn(page) (page_to_phys(page)>>12)
|
|
|
|
|
|
|
|
/* to align the pointer to the (next) page boundary */
|
2013-02-23 09:41:48 +00:00
|
|
|
#define PAGE_ALIGN(addr) ALIGN(addr, PAGE_SIZE)
|
|
|
|
|
|
|
|
#endif
|