diff options
author | Chengming Zhou <chengming.zhou@linux.dev> | 2024-03-05 08:39:13 +0000 |
---|---|---|
committer | Vlastimil Babka <vbabka@suse.cz> | 2024-03-05 11:12:47 +0100 |
commit | fae1b0129327343b30be8f254da246a010810959 (patch) | |
tree | 5746c19e1b3f2634e66999f0243ee8ed577f2a80 /tools/include | |
parent | 17cce771c5fc85f43680143ac8b3b944fdad113f (diff) |
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 'tools/include')
-rw-r--r-- | tools/include/linux/slab.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/include/linux/slab.h b/tools/include/linux/slab.h index 311759ea25e9..51b25e9c4ec7 100644 --- a/tools/include/linux/slab.h +++ b/tools/include/linux/slab.h @@ -18,7 +18,6 @@ bool slab_is_available(void); enum slab_state { DOWN, PARTIAL, - PARTIAL_NODE, UP, FULL }; |