]> git.dujemihanovic.xyz Git - linux.git/commitdiff
memblock tests: fix undefined reference to `BIT'
authorWei Yang <richard.weiyang@gmail.com>
Tue, 2 Apr 2024 13:27:01 +0000 (13:27 +0000)
committerMike Rapoport (IBM) <rppt@kernel.org>
Thu, 4 Apr 2024 08:08:33 +0000 (11:08 +0300)
commit 772dd0342727 ("mm: enumerate all gfp flags") define gfp flags
with the help of BIT, while gfp_types.h doesn't include header file for
the definition. This through an error on building memblock tests.

Let's include linux/bits.h to fix it.

Signed-off-by: Wei Yang <richard.weiyang@gmail.com>
CC: Suren Baghdasaryan <surenb@google.com>
CC: Michal Hocko <mhocko@suse.com>
Link: https://lore.kernel.org/r/20240402132701.29744-4-richard.weiyang@gmail.com
Signed-off-by: Mike Rapoport (IBM) <rppt@kernel.org>
include/linux/gfp_types.h

index 868c8fb1bbc1c2dabd708bc2c6485c2e42dee8fe..13becafe41df00f94dddb5e4f0417d3447c6456c 100644 (file)
@@ -2,6 +2,8 @@
 #ifndef __LINUX_GFP_TYPES_H
 #define __LINUX_GFP_TYPES_H
 
+#include <linux/bits.h>
+
 /* The typedef is in types.h but we want the documentation here */
 #if 0
 /**