diff options
author | Christoph Lameter <cl@linux.com> | 2011-06-01 12:25:45 -0500 |
---|---|---|
committer | Pekka Enberg <penberg@kernel.org> | 2011-07-02 13:26:52 +0300 |
commit | 50d5c41cd151b21ac1dfc98f048210456ccacc20 (patch) | |
tree | 406983fe5aca70acad4df7c7f92286e4fc71d70b /include/linux/page-flags.h | |
parent | 7e0528dadc9f8b04e4de0dba48a075100c2afe75 (diff) | |
download | op-kernel-dev-50d5c41cd151b21ac1dfc98f048210456ccacc20.zip op-kernel-dev-50d5c41cd151b21ac1dfc98f048210456ccacc20.tar.gz |
slub: Do not use frozen page flag but a bit in the page counters
Do not use a page flag for the frozen bit. It needs to be part
of the state that is handled with cmpxchg_double(). So use a bit
in the counter struct in the page struct for that purpose.
Signed-off-by: Christoph Lameter <cl@linux.com>
Signed-off-by: Pekka Enberg <penberg@kernel.org>
Diffstat (limited to 'include/linux/page-flags.h')
-rw-r--r-- | include/linux/page-flags.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/linux/page-flags.h b/include/linux/page-flags.h index 6081493..20791f1 100644 --- a/include/linux/page-flags.h +++ b/include/linux/page-flags.h @@ -124,9 +124,6 @@ enum pageflags { /* SLOB */ PG_slob_free = PG_private, - - /* SLUB */ - PG_slub_frozen = PG_active, }; #ifndef __GENERATING_BOUNDS_H @@ -212,8 +209,6 @@ PAGEFLAG(SwapBacked, swapbacked) __CLEARPAGEFLAG(SwapBacked, swapbacked) __PAGEFLAG(SlobFree, slob_free) -__PAGEFLAG(SlubFrozen, slub_frozen) - /* * Private page markings that may be used by the filesystem that owns the page * for its own purposes. |