mirror of
https://github.com/Evolution-X-Devices/kernel_google_b1c1
synced 2026-02-06 06:50:04 +00:00
10 lines
261 B
C
10 lines
261 B
C
|
|
#ifndef _LINUX_PFN_H_
|
||
|
|
#define _LINUX_PFN_H_
|
||
|
|
|
||
|
|
#define PFN_ALIGN(x) (((unsigned long)(x) + (PAGE_SIZE - 1)) & PAGE_MASK)
|
||
|
|
#define PFN_UP(x) (((x) + PAGE_SIZE-1) >> PAGE_SHIFT)
|
||
|
|
#define PFN_DOWN(x) ((x) >> PAGE_SHIFT)
|
||
|
|
#define PFN_PHYS(x) ((x) << PAGE_SHIFT)
|
||
|
|
|
||
|
|
#endif
|