diff options
Diffstat (limited to 'include/linux/page-flags.h')
-rw-r--r-- | include/linux/page-flags.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/page-flags.h b/include/linux/page-flags.h index 3fc586b7b90b..54590a9a103e 100644 --- a/include/linux/page-flags.h +++ b/include/linux/page-flags.h | |||
@@ -105,6 +105,10 @@ enum pageflags { | |||
105 | PG_pinned = PG_owner_priv_1, | 105 | PG_pinned = PG_owner_priv_1, |
106 | PG_savepinned = PG_dirty, | 106 | PG_savepinned = PG_dirty, |
107 | 107 | ||
108 | /* SLOB */ | ||
109 | PG_slob_page = PG_active, | ||
110 | PG_slob_free = PG_private, | ||
111 | |||
108 | /* SLUB */ | 112 | /* SLUB */ |
109 | PG_slub_frozen = PG_active, | 113 | PG_slub_frozen = PG_active, |
110 | PG_slub_debug = PG_error, | 114 | PG_slub_debug = PG_error, |
@@ -173,6 +177,9 @@ PAGEFLAG(Reserved, reserved) __CLEARPAGEFLAG(Reserved, reserved) | |||
173 | PAGEFLAG(Private, private) __CLEARPAGEFLAG(Private, private) | 177 | PAGEFLAG(Private, private) __CLEARPAGEFLAG(Private, private) |
174 | __SETPAGEFLAG(Private, private) | 178 | __SETPAGEFLAG(Private, private) |
175 | 179 | ||
180 | __PAGEFLAG(SlobPage, slob_page) | ||
181 | __PAGEFLAG(SlobFree, slob_free) | ||
182 | |||
176 | __PAGEFLAG(SlubFrozen, slub_frozen) | 183 | __PAGEFLAG(SlubFrozen, slub_frozen) |
177 | __PAGEFLAG(SlubDebug, slub_debug) | 184 | __PAGEFLAG(SlubDebug, slub_debug) |
178 | 185 | ||