From: Andrew Morton Date: Wed, 16 Jun 2021 01:23:39 +0000 (-0700) Subject: mm/slub.c: include swab.h X-Git-Tag: accepted/tizen/unified/20230118.172025~7063^2~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1b3865d016815cbd69a1879ca1c8a8901fda1072;p=platform%2Fkernel%2Flinux-rpi.git mm/slub.c: include swab.h Fixes build with CONFIG_SLAB_FREELIST_HARDENED=y. Hopefully. But it's the right thing to do anwyay. Fixes: 1ad53d9fa3f61 ("slub: improve bit diffusion for freelist ptr obfuscation") Link: https://bugzilla.kernel.org/show_bug.cgi?id=213417 Reported-by: Acked-by: Kees Cook Cc: Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/mm/slub.c b/mm/slub.c index fe30df4..61bd40e 100644 --- a/mm/slub.c +++ b/mm/slub.c @@ -15,6 +15,7 @@ #include #include #include +#include #include #include #include "slab.h"