diff options
Diffstat (limited to 'include/linux/page_cgroup.h')
-rw-r--r-- | include/linux/page_cgroup.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/include/linux/page_cgroup.h b/include/linux/page_cgroup.h index a2d11771c84b..106029243ff4 100644 --- a/include/linux/page_cgroup.h +++ b/include/linux/page_cgroup.h | |||
@@ -4,7 +4,6 @@ | |||
4 | enum { | 4 | enum { |
5 | /* flags for mem_cgroup */ | 5 | /* flags for mem_cgroup */ |
6 | PCG_LOCK, /* Lock for pc->mem_cgroup and following bits. */ | 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. */ | 7 | PCG_USED, /* this object is in use. */ |
9 | PCG_MIGRATION, /* under page migration */ | 8 | PCG_MIGRATION, /* under page migration */ |
10 | /* flags for mem_cgroup and file and I/O status */ | 9 | /* flags for mem_cgroup and file and I/O status */ |
@@ -64,11 +63,6 @@ static inline void ClearPageCgroup##uname(struct page_cgroup *pc) \ | |||
64 | static inline int TestClearPageCgroup##uname(struct page_cgroup *pc) \ | 63 | static inline int TestClearPageCgroup##uname(struct page_cgroup *pc) \ |
65 | { return test_and_clear_bit(PCG_##lname, &pc->flags); } | 64 | { return test_and_clear_bit(PCG_##lname, &pc->flags); } |
66 | 65 | ||
67 | /* Cache flag is set only once (at allocation) */ | ||
68 | TESTPCGFLAG(Cache, CACHE) | ||
69 | CLEARPCGFLAG(Cache, CACHE) | ||
70 | SETPCGFLAG(Cache, CACHE) | ||
71 | |||
72 | TESTPCGFLAG(Used, USED) | 66 | TESTPCGFLAG(Used, USED) |
73 | CLEARPCGFLAG(Used, USED) | 67 | CLEARPCGFLAG(Used, USED) |
74 | SETPCGFLAG(Used, USED) | 68 | SETPCGFLAG(Used, USED) |
@@ -85,7 +79,7 @@ static inline void lock_page_cgroup(struct page_cgroup *pc) | |||
85 | { | 79 | { |
86 | /* | 80 | /* |
87 | * Don't take this lock in IRQ context. | 81 | * Don't take this lock in IRQ context. |
88 | * This lock is for pc->mem_cgroup, USED, CACHE, MIGRATION | 82 | * This lock is for pc->mem_cgroup, USED, MIGRATION |
89 | */ | 83 | */ |
90 | bit_spin_lock(PCG_LOCK, &pc->flags); | 84 | bit_spin_lock(PCG_LOCK, &pc->flags); |
91 | } | 85 | } |