Blame view

include/linux/pfn.h 627 Bytes
22a9835c3   Dave Hansen   [PATCH] unify PFN...
1
2
  #ifndef _LINUX_PFN_H_
  #define _LINUX_PFN_H_
947d0496c   Jeremy Fitzhardinge   generic: make PFN...
3
4
  #ifndef __ASSEMBLY__
  #include <linux/types.h>
34c0fd540   Dan Williams   mm, dax, pmem: in...
5
6
7
8
9
10
11
  
  /*
   * pfn_t: encapsulates a page-frame number that is optionally backed
   * by memmap (struct page).  Whether a pfn_t has a 'struct page'
   * backing is indicated by flags in the high bits of the value.
   */
  typedef struct {
db78c2223   Dan Williams   mm: fix pfn_t vs ...
12
  	u64 val;
34c0fd540   Dan Williams   mm, dax, pmem: in...
13
  } pfn_t;
947d0496c   Jeremy Fitzhardinge   generic: make PFN...
14
  #endif
22a9835c3   Dave Hansen   [PATCH] unify PFN...
15
16
17
  #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)
947d0496c   Jeremy Fitzhardinge   generic: make PFN...
18
  #define PFN_PHYS(x)	((phys_addr_t)(x) << PAGE_SHIFT)
8f235d1a3   Chen Gang   mm: add PHYS_PFN,...
19
  #define PHYS_PFN(x)	((unsigned long)((x) >> PAGE_SHIFT))
22a9835c3   Dave Hansen   [PATCH] unify PFN...
20
21
  
  #endif