blob: 30b08136fdf3857db44dda40b04c0a5b46d2e622 [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 Hiroyuki52d4b9a2008-10-18 20:28:16 -070042};
43
44#define TESTPCGFLAG(uname, lname) \
45static inline int PageCgroup##uname(struct page_cgroup *pc) \
46 { return test_bit(PCG_##lname, &pc->flags); }
47
48#define SETPCGFLAG(uname, lname) \
49static inline void SetPageCgroup##uname(struct page_cgroup *pc)\
50 { set_bit(PCG_##lname, &pc->flags); }
51
52#define CLEARPCGFLAG(uname, lname) \
53static inline void ClearPageCgroup##uname(struct page_cgroup *pc) \
54 { clear_bit(PCG_##lname, &pc->flags); }
55
Balbir Singh4b3bde42009-09-23 15:56:32 -070056#define TESTCLEARPCGFLAG(uname, lname) \
57static inline int TestClearPageCgroup##uname(struct page_cgroup *pc) \
58 { return test_and_clear_bit(PCG_##lname, &pc->flags); }
59
Daisuke Nishimura57f9fd7d2009-12-15 16:47:11 -080060TESTPCGFLAG(Locked, LOCK)
61
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -070062/* Cache flag is set only once (at allocation) */
63TESTPCGFLAG(Cache, CACHE)
Balbir Singh4b3bde42009-09-23 15:56:32 -070064CLEARPCGFLAG(Cache, CACHE)
65SETPCGFLAG(Cache, CACHE)
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -070066
67TESTPCGFLAG(Used, USED)
68CLEARPCGFLAG(Used, USED)
Balbir Singh4b3bde42009-09-23 15:56:32 -070069SETPCGFLAG(Used, USED)
70
71SETPCGFLAG(AcctLRU, ACCT_LRU)
72CLEARPCGFLAG(AcctLRU, ACCT_LRU)
73TESTPCGFLAG(AcctLRU, ACCT_LRU)
74TESTCLEARPCGFLAG(AcctLRU, ACCT_LRU)
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -070075
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -070076static inline int page_cgroup_nid(struct page_cgroup *pc)
77{
78 return page_to_nid(pc->page);
79}
80
81static inline enum zone_type page_cgroup_zid(struct page_cgroup *pc)
82{
83 return page_zonenum(pc->page);
84}
85
86static inline void lock_page_cgroup(struct page_cgroup *pc)
87{
88 bit_spin_lock(PCG_LOCK, &pc->flags);
89}
90
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -070091static inline void unlock_page_cgroup(struct page_cgroup *pc)
92{
93 bit_spin_unlock(PCG_LOCK, &pc->flags);
94}
95
96#else /* CONFIG_CGROUP_MEM_RES_CTLR */
97struct page_cgroup;
98
Al Viro31168482008-11-22 17:33:24 +000099static inline void __meminit pgdat_page_cgroup_init(struct pglist_data *pgdat)
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700100{
101}
102
103static inline struct page_cgroup *lookup_page_cgroup(struct page *page)
104{
105 return NULL;
106}
KAMEZAWA Hiroyuki94b6da52008-10-22 14:15:05 -0700107
108static inline void page_cgroup_init(void)
109{
110}
111
KAMEZAWA Hiroyukica371c02009-06-12 10:33:53 +0300112static inline void __init page_cgroup_init_flatmem(void)
113{
114}
115
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700116#endif
KAMEZAWA Hiroyuki27a7faa2009-01-07 18:07:58 -0800117
KAMEZAWA Hiroyuki27a7faa2009-01-07 18:07:58 -0800118#include <linux/swap.h>
Jaswinder Singh Rajput97572752009-09-20 16:20:44 +0530119
120#ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
Daisuke Nishimura02491442010-03-10 15:22:17 -0800121extern unsigned short swap_cgroup_cmpxchg(swp_entry_t ent,
122 unsigned short old, unsigned short new);
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -0700123extern unsigned short swap_cgroup_record(swp_entry_t ent, unsigned short id);
124extern unsigned short lookup_swap_cgroup(swp_entry_t ent);
KAMEZAWA Hiroyuki27a7faa2009-01-07 18:07:58 -0800125extern int swap_cgroup_swapon(int type, unsigned long max_pages);
126extern void swap_cgroup_swapoff(int type);
127#else
KAMEZAWA Hiroyuki27a7faa2009-01-07 18:07:58 -0800128
129static inline
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -0700130unsigned short swap_cgroup_record(swp_entry_t ent, unsigned short id)
KAMEZAWA Hiroyuki27a7faa2009-01-07 18:07:58 -0800131{
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -0700132 return 0;
KAMEZAWA Hiroyuki27a7faa2009-01-07 18:07:58 -0800133}
134
135static inline
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -0700136unsigned short lookup_swap_cgroup(swp_entry_t ent)
KAMEZAWA Hiroyuki27a7faa2009-01-07 18:07:58 -0800137{
KAMEZAWA Hiroyukia3b2d692009-04-02 16:57:45 -0700138 return 0;
KAMEZAWA Hiroyuki27a7faa2009-01-07 18:07:58 -0800139}
140
141static inline int
142swap_cgroup_swapon(int type, unsigned long max_pages)
143{
144 return 0;
145}
146
147static inline void swap_cgroup_swapoff(int type)
148{
149 return;
150}
151
152#endif
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700153#endif