repo.or.cz
/
linux-2.6
/
linux-acpi-2.6
/
ibm-acpi-2.6.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[2.6 patch] ocfs2: make dlm_do_assert_master() static
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git]
/
include
/
linux
/
pfn.h
blob
bb01f8b92b56208bf7b433d842f7d0821647e691
1
#ifndef _LINUX_PFN_H_
2
#define _LINUX_PFN_H_
3
4
#define PFN_ALIGN(x) (((unsigned long)(x) + (PAGE_SIZE - 1)) & PAGE_MASK)
5
#define PFN_UP(x) (((x) + PAGE_SIZE-1) >> PAGE_SHIFT)
6
#define PFN_DOWN(x) ((x) >> PAGE_SHIFT)
7
#define PFN_PHYS(x) ((x) << PAGE_SHIFT)
8
9
#endif