1 #ifndef __LINUX_PAGE_CGROUP_H
2 #define __LINUX_PAGE_CGROUP_H
4 #ifdef CONFIG_CGROUP_MEM_RES_CTLR
5 #include <linux/bit_spinlock.h>
7 * Page Cgroup can be considered as an extended mem_map.
8 * A page_cgroup page is associated with every page descriptor. The
9 * page_cgroup helps us identify information about the cgroup
10 * All page cgroups are allocated at boot or memory hotplug event,
11 * then the page cgroup for pfn always exists.
15 struct mem_cgroup
*mem_cgroup
;
17 struct list_head lru
; /* per cgroup LRU list */
20 void __meminit
pgdat_page_cgroup_init(struct pglist_data
*pgdat
);
22 #ifdef CONFIG_SPARSEMEM
23 static inline void __init
page_cgroup_init_flatmem(void)
26 extern void __init
page_cgroup_init(void);
28 void __init
page_cgroup_init_flatmem(void);
29 static inline void __init
page_cgroup_init(void)
34 struct page_cgroup
*lookup_page_cgroup(struct page
*page
);
37 /* flags for mem_cgroup */
38 PCG_LOCK
, /* page cgroup is locked */
39 PCG_CACHE
, /* charged as cache */
40 PCG_USED
, /* this object is in use. */
43 #define TESTPCGFLAG(uname, lname) \
44 static inline int PageCgroup##uname(struct page_cgroup *pc) \
45 { return test_bit(PCG_##lname, &pc->flags); }
47 #define SETPCGFLAG(uname, lname) \
48 static inline void SetPageCgroup##uname(struct page_cgroup *pc)\
49 { set_bit(PCG_##lname, &pc->flags); }
51 #define CLEARPCGFLAG(uname, lname) \
52 static inline void ClearPageCgroup##uname(struct page_cgroup *pc) \
53 { clear_bit(PCG_##lname, &pc->flags); }
55 /* Cache flag is set only once (at allocation) */
56 TESTPCGFLAG(Cache
, CACHE
)
58 TESTPCGFLAG(Used
, USED
)
59 CLEARPCGFLAG(Used
, USED
)
61 static inline int page_cgroup_nid(struct page_cgroup
*pc
)
63 return page_to_nid(pc
->page
);
66 static inline enum zone_type
page_cgroup_zid(struct page_cgroup
*pc
)
68 return page_zonenum(pc
->page
);
71 static inline void lock_page_cgroup(struct page_cgroup
*pc
)
73 bit_spin_lock(PCG_LOCK
, &pc
->flags
);
76 static inline int trylock_page_cgroup(struct page_cgroup
*pc
)
78 return bit_spin_trylock(PCG_LOCK
, &pc
->flags
);
81 static inline void unlock_page_cgroup(struct page_cgroup
*pc
)
83 bit_spin_unlock(PCG_LOCK
, &pc
->flags
);
86 #else /* CONFIG_CGROUP_MEM_RES_CTLR */
89 static inline void __meminit
pgdat_page_cgroup_init(struct pglist_data
*pgdat
)
93 static inline struct page_cgroup
*lookup_page_cgroup(struct page
*page
)
98 static inline void page_cgroup_init(void)
102 static inline void __init
page_cgroup_init_flatmem(void)
108 #ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
109 #include <linux/swap.h>
110 extern unsigned short swap_cgroup_record(swp_entry_t ent
, unsigned short id
);
111 extern unsigned short lookup_swap_cgroup(swp_entry_t ent
);
112 extern int swap_cgroup_swapon(int type
, unsigned long max_pages
);
113 extern void swap_cgroup_swapoff(int type
);
115 #include <linux/swap.h>
118 unsigned short swap_cgroup_record(swp_entry_t ent
, unsigned short id
)
124 unsigned short lookup_swap_cgroup(swp_entry_t ent
)
130 swap_cgroup_swapon(int type
, unsigned long max_pages
)
135 static inline void swap_cgroup_swapoff(int type
)