1 #ifndef __LINUX_PAGE_CGROUP_H
2 #define __LINUX_PAGE_CGROUP_H
5 /* flags for mem_cgroup */
6 PCG_LOCK
, /* Lock for pc->mem_cgroup and following bits. */
7 PCG_CACHE
, /* charged as cache */
8 PCG_USED
, /* this object is in use. */
9 PCG_MIGRATION
, /* under page migration */
10 /* flags for mem_cgroup and file and I/O status */
11 PCG_MOVE_LOCK
, /* For race between move_account v.s. following bits */
12 PCG_FILE_MAPPED
, /* page is accounted as "mapped" */
16 #ifndef __GENERATING_BOUNDS_H
17 #include <generated/bounds.h>
19 #ifdef CONFIG_CGROUP_MEM_RES_CTLR
20 #include <linux/bit_spinlock.h>
23 * Page Cgroup can be considered as an extended mem_map.
24 * A page_cgroup page is associated with every page descriptor. The
25 * page_cgroup helps us identify information about the cgroup
26 * All page cgroups are allocated at boot or memory hotplug event,
27 * then the page cgroup for pfn always exists.
31 struct mem_cgroup
*mem_cgroup
;
34 void __meminit
pgdat_page_cgroup_init(struct pglist_data
*pgdat
);
36 #ifdef CONFIG_SPARSEMEM
37 static inline void __init
page_cgroup_init_flatmem(void)
40 extern void __init
page_cgroup_init(void);
42 void __init
page_cgroup_init_flatmem(void);
43 static inline void __init
page_cgroup_init(void)
48 struct page_cgroup
*lookup_page_cgroup(struct page
*page
);
49 struct page
*lookup_cgroup_page(struct page_cgroup
*pc
);
51 #define TESTPCGFLAG(uname, lname) \
52 static inline int PageCgroup##uname(struct page_cgroup *pc) \
53 { return test_bit(PCG_##lname, &pc->flags); }
55 #define SETPCGFLAG(uname, lname) \
56 static inline void SetPageCgroup##uname(struct page_cgroup *pc)\
57 { set_bit(PCG_##lname, &pc->flags); }
59 #define CLEARPCGFLAG(uname, lname) \
60 static inline void ClearPageCgroup##uname(struct page_cgroup *pc) \
61 { clear_bit(PCG_##lname, &pc->flags); }
63 #define TESTCLEARPCGFLAG(uname, lname) \
64 static inline int TestClearPageCgroup##uname(struct page_cgroup *pc) \
65 { return test_and_clear_bit(PCG_##lname, &pc->flags); }
67 /* Cache flag is set only once (at allocation) */
68 TESTPCGFLAG(Cache
, CACHE
)
69 CLEARPCGFLAG(Cache
, CACHE
)
70 SETPCGFLAG(Cache
, CACHE
)
72 TESTPCGFLAG(Used
, USED
)
73 CLEARPCGFLAG(Used
, USED
)
74 SETPCGFLAG(Used
, USED
)
76 SETPCGFLAG(FileMapped
, FILE_MAPPED
)
77 CLEARPCGFLAG(FileMapped
, FILE_MAPPED
)
78 TESTPCGFLAG(FileMapped
, FILE_MAPPED
)
80 SETPCGFLAG(Migration
, MIGRATION
)
81 CLEARPCGFLAG(Migration
, MIGRATION
)
82 TESTPCGFLAG(Migration
, MIGRATION
)
84 static inline void lock_page_cgroup(struct page_cgroup
*pc
)
87 * Don't take this lock in IRQ context.
88 * This lock is for pc->mem_cgroup, USED, CACHE, MIGRATION
90 bit_spin_lock(PCG_LOCK
, &pc
->flags
);
93 static inline void unlock_page_cgroup(struct page_cgroup
*pc
)
95 bit_spin_unlock(PCG_LOCK
, &pc
->flags
);
98 static inline void move_lock_page_cgroup(struct page_cgroup
*pc
,
102 * We know updates to pc->flags of page cache's stats are from both of
103 * usual context or IRQ context. Disable IRQ to avoid deadlock.
105 local_irq_save(*flags
);
106 bit_spin_lock(PCG_MOVE_LOCK
, &pc
->flags
);
109 static inline void move_unlock_page_cgroup(struct page_cgroup
*pc
,
110 unsigned long *flags
)
112 bit_spin_unlock(PCG_MOVE_LOCK
, &pc
->flags
);
113 local_irq_restore(*flags
);
116 #else /* CONFIG_CGROUP_MEM_RES_CTLR */
119 static inline void __meminit
pgdat_page_cgroup_init(struct pglist_data
*pgdat
)
123 static inline struct page_cgroup
*lookup_page_cgroup(struct page
*page
)
128 static inline void page_cgroup_init(void)
132 static inline void __init
page_cgroup_init_flatmem(void)
136 #endif /* CONFIG_CGROUP_MEM_RES_CTLR */
138 #include <linux/swap.h>
140 #ifdef CONFIG_CGROUP_MEM_RES_CTLR_SWAP
141 extern unsigned short swap_cgroup_cmpxchg(swp_entry_t ent
,
142 unsigned short old
, unsigned short new);
143 extern unsigned short swap_cgroup_record(swp_entry_t ent
, unsigned short id
);
144 extern unsigned short lookup_swap_cgroup_id(swp_entry_t ent
);
145 extern int swap_cgroup_swapon(int type
, unsigned long max_pages
);
146 extern void swap_cgroup_swapoff(int type
);
150 unsigned short swap_cgroup_record(swp_entry_t ent
, unsigned short id
)
156 unsigned short lookup_swap_cgroup_id(swp_entry_t ent
)
162 swap_cgroup_swapon(int type
, unsigned long max_pages
)
167 static inline void swap_cgroup_swapoff(int type
)
172 #endif /* CONFIG_CGROUP_MEM_RES_CTLR_SWAP */
174 #endif /* !__GENERATING_BOUNDS_H */
176 #endif /* __LINUX_PAGE_CGROUP_H */