aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tools
diff options
context:
space:
mode:
authorChengming Zhou <chengming.zhou@linux.dev>2024-06-07 16:40:14 +0800
committerVlastimil Babka <vbabka@suse.cz>2024-06-24 21:41:41 +0200
commit4a24bbabc826eaba6f94a9741712117b8e2b0587 (patch)
treec0d62b3fd5152cbf0afe92addf85972e25880346 /tools
parentslab: don't put freepointer outside of object if only orig_size (diff)
downloadwireguard-linux-4a24bbabc826eaba6f94a9741712117b8e2b0587.tar.xz
wireguard-linux-4a24bbabc826eaba6f94a9741712117b8e2b0587.zip
slab: delete useless RED_INACTIVE and RED_ACTIVE
These seem useless since we use the SLUB_RED_INACTIVE and SLUB_RED_ACTIVE, so just delete them, no functional change. Reviewed-by: Vlastimil Babka <vbabka@suse.cz> Signed-off-by: Chengming Zhou <chengming.zhou@linux.dev> Reviewed-by: Christoph Lameter (Ampere) <cl@linux.com> Signed-off-by: Vlastimil Babka <vbabka@suse.cz>
Diffstat (limited to 'tools')
-rw-r--r--tools/include/linux/poison.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/tools/include/linux/poison.h b/tools/include/linux/poison.h
index 2e6338ac5eed..e530e54046c9 100644
--- a/tools/include/linux/poison.h
+++ b/tools/include/linux/poison.h
@@ -47,11 +47,8 @@
* Magic nums for obj red zoning.
* Placed in the first word before and the first word after an obj.
*/
-#define RED_INACTIVE 0x09F911029D74E35BULL /* when obj is inactive */
-#define RED_ACTIVE 0xD84156C5635688C0ULL /* when obj is active */
-
-#define SLUB_RED_INACTIVE 0xbb
-#define SLUB_RED_ACTIVE 0xcc
+#define SLUB_RED_INACTIVE 0xbb /* when obj is inactive */
+#define SLUB_RED_ACTIVE 0xcc /* when obj is active */
/* ...and for poisoning */
#define POISON_INUSE 0x5a /* for use-uninitialised poisoning */