diff options
author | Chengming Zhou <chengming.zhou@linux.dev> | 2024-03-05 09:39:13 +0100 |
---|---|---|
committer | Vlastimil Babka <vbabka@suse.cz> | 2024-03-05 11:12:47 +0100 |
commit | fae1b0129327343b30be8f254da246a010810959 (patch) | |
tree | 5746c19e1b3f2634e66999f0243ee8ed577f2a80 /mm/slab.h | |
parent | mm, slab: remove memcg_from_slab_obj() (diff) | |
download | linux-fae1b0129327343b30be8f254da246a010810959.tar.xz linux-fae1b0129327343b30be8f254da246a010810959.zip |
slab: remove PARTIAL_NODE slab_state
The PARTIAL_NODE slab_state has gone with SLAB removed, so just
remove it.
Signed-off-by: Chengming Zhou <chengming.zhou@linux.dev>
Signed-off-by: Vlastimil Babka <vbabka@suse.cz>
Diffstat (limited to 'mm/slab.h')
-rw-r--r-- | mm/slab.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/mm/slab.h b/mm/slab.h index 6b879d8e8a7a..16c343942456 100644 --- a/mm/slab.h +++ b/mm/slab.h @@ -363,7 +363,6 @@ static inline int objs_per_slab(const struct kmem_cache *cache, enum slab_state { DOWN, /* No slab functionality yet */ PARTIAL, /* SLUB: kmem_cache_node available */ - PARTIAL_NODE, /* SLAB: kmalloc size for node struct available */ UP, /* Slab caches usable but not all extras yet */ FULL /* Everything is working */ }; |