blob: 5bb13b3db84d46ee155784a26acfd850e94c91ff [file] [log] [blame]
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -07001#ifndef __LINUX_PAGE_CGROUP_H
2#define __LINUX_PAGE_CGROUP_H
3
4#ifdef CONFIG_CGROUP_MEM_RES_CTLR
5#include <linux/bit_spinlock.h>
6/*
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.
12 */
13struct page_cgroup {
14 unsigned long flags;
15 struct mem_cgroup *mem_cgroup;
16 struct page *page;
17 struct list_head lru; /* per cgroup LRU list */
18};
19
Al Viro31168482008-11-22 17:33:24 +000020void __meminit pgdat_page_cgroup_init(struct pglist_data *pgdat);
KAMEZAWA Hiroyukica371c02009-06-12 10:33:53 +030021
22#ifdef CONFIG_SPARSEMEM
23static inline void __init page_cgroup_init_flatmem(void)
24{
25}
26extern void __init page_cgroup_init(void);
27#else
28void __init page_cgroup_init_flatmem(void);
29static inline void __init page_cgroup_init(void)
30{
31}
32#endif
33
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -070034struct page_cgroup *lookup_page_cgroup(struct page *page);
35
36enum {
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. */
Balbir Singh4b3bde42009-09-23 15:56:32 -070041 PCG_ACCT_LRU, /* page has been accounted for */
KAMEZAWA Hiroyuki8725d542010-04-06 14:35:05 -070042 PCG_FILE_MAPPED, /* page is accounted as "mapped" */
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -070043 PCG_MIGRATION, /* under page migration */
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -070044};
45
46#define TESTPCGFLAG(uname, lname) \
47static inline int PageCgroup##uname(struct page_cgroup *pc) \
48 { return test_bit(PCG_##lname, &pc->flags); }
49
50#define SETPCGFLAG(uname, lname) \
51static inline void SetPageCgroup##uname(struct page_cgroup *pc)\
52 { set_bit(PCG_##lname, &pc->flags); }
53
54#define CLEARPCGFLAG(uname, lname) \
55static inline void ClearPageCgroup##uname(struct page_cgroup *pc) \
56 { clear_bit(PCG_##lname, &pc->flags); }
57
Balbir Singh4b3bde42009-09-23 15:56:32 -070058#define TESTCLEARPCGFLAG(uname, lname) \
59static inline int TestClearPageCgroup##uname(struct page_cgroup *pc) \
60 { return test_and_clear_bit(PCG_##lname, &pc->flags); }
61
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -080062TESTPCGFLAG(Locked, LOCK)
63
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -070064/* Cache flag is set only once (at allocation) */
65TESTPCGFLAG(Cache, CACHE)
Balbir Singh4b3bde42009-09-23 15:56:32 -070066CLEARPCGFLAG(Cache, CACHE)
67SETPCGFLAG(Cache, CACHE)
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -070068
69TESTPCGFLAG(Used, USED)
70CLEARPCGFLAG(Used, USED)
Balbir Singh4b3bde42009-09-23 15:56:32 -070071SETPCGFLAG(Used, USED)
72
73SETPCGFLAG(AcctLRU, ACCT_LRU)
74CLEARPCGFLAG(AcctLRU, ACCT_LRU)
75TESTPCGFLAG(AcctLRU, ACCT_LRU)
76TESTCLEARPCGFLAG(AcctLRU, ACCT_LRU)
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -070077
KAMEZAWA Hiroyuki8725d542010-04-06 14:35:05 -070078
79SETPCGFLAG(FileMapped, FILE_MAPPED)
80CLEARPCGFLAG(FileMapped, FILE_MAPPED)
81TESTPCGFLAG(FileMapped, FILE_MAPPED)
82
akpm@linux-foundation.orgac39cf82010-05-26 14:42:46 -070083SETPCGFLAG(Migration, MIGRATION)
84CLEARPCGFLAG(Migration, MIGRATION)
85TESTPCGFLAG(Migration, MIGRATION)
86
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -070087static inline int page_cgroup_nid(struct page_cgroup *pc)
88{
89 return page_to_nid(pc->page);
90}
91
92static inline enum zone_type page_cgroup_zid(struct page_cgroup *pc)
93{
94 return page_zonenum(pc->page);
95}
96
97static inline void lock_page_cgroup(struct page_cgroup *pc)
98{
99 bit_spin_lock(PCG_LOCK, &pc->flags);
100}
101
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700102static inline void unlock_page_cgroup(struct page_cgroup *pc)
103{
104 bit_spin_unlock(PCG_LOCK, &pc->flags);
105}
106
107#else /* CONFIG_CGROUP_MEM_RES_CTLR */
108struct page_cgroup;
109
Al Viro31168482008-11-22 17:33:24 +0000110static inline void __meminit pgdat_page_cgroup_init(struct pglist_data *pgdat)
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700111{
112}
113
114static inline struct page_cgroup *lookup_page_cgroup(struct page *page)
115{
116 return NULL;
117}
KAMEZAWA Hiroyuki94b6da52008-10-22 14:15:05 -0700118
119static inline void page_cgroup_init(void)
120{
121}
122
KAMEZAWA Hiroyukica371c02009-06-12 10:33:53 +0300123static inline void __init page_cgroup_init_flatmem(void)
124{
125}
126
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700127#endif
KAMEZAWA Hiroyuki27a7faa2009-01-07 18:07:58 -0800128
KAMEZAWA Hiroyuki27a7faa2009-01-07 18:07:58 -0800129#include <linux/swap.h>
Jaswinder Singh Rajput97572752009-09-20 16:20:44 +0530130
131#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
Daisuke Nishimura02491442010-03-10 15:22:17 -0800132extern unsigned short swap_cgroup_cmpxchg(swp_entry_t ent,
133 unsigned short old, unsigned short new);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -0700134extern unsigned short swap_cgroup_record(swp_entry_t ent, unsigned short id);
135extern unsigned short lookup_swap_cgroup(swp_entry_t ent);
KAMEZAWA Hiroyuki27a7faa2009-01-07 18:07:58 -0800136extern int swap_cgroup_swapon(int type, unsigned long max_pages);
137extern void swap_cgroup_swapoff(int type);
138#else
KAMEZAWA Hiroyuki27a7faa2009-01-07 18:07:58 -0800139
140static inline
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -0700141unsigned short swap_cgroup_record(swp_entry_t ent, unsigned short id)
KAMEZAWA Hiroyuki27a7faa2009-01-07 18:07:58 -0800142{
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -0700143 return 0;
KAMEZAWA Hiroyuki27a7faa2009-01-07 18:07:58 -0800144}
145
146static inline
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -0700147unsigned short lookup_swap_cgroup(swp_entry_t ent)
KAMEZAWA Hiroyuki27a7faa2009-01-07 18:07:58 -0800148{
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -0700149 return 0;
KAMEZAWA Hiroyuki27a7faa2009-01-07 18:07:58 -0800150}
151
152static inline int
153swap_cgroup_swapon(int type, unsigned long max_pages)
154{
155 return 0;
156}
157
158static inline void swap_cgroup_swapoff(int type)
159{
160 return;
161}
162
163#endif
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700164#endif