Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Chengming Zhou and committed by
Vlastimil Babka
fae1b012 17cce771

-2
-1
mm/slab.h
··· 363 363 enum slab_state { 364 364 DOWN, /* No slab functionality yet */ 365 365 PARTIAL, /* SLUB: kmem_cache_node available */ 366 - PARTIAL_NODE, /* SLAB: kmalloc size for node struct available */ 367 366 UP, /* Slab caches usable but not all extras yet */ 368 367 FULL /* Everything is working */ 369 368 };
-1
tools/include/linux/slab.h
··· 18 18 enum slab_state { 19 19 DOWN, 20 20 PARTIAL, 21 - PARTIAL_NODE, 22 21 UP, 23 22 FULL 24 23 };