mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-27 01:20:55 +07: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
|