From: Matthew Wilcox Date: Thu, 17 Mar 2016 21:21:42 +0000 (-0700) Subject: radix-tree: add an explicit include of bitops.h X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=f67c07f07fca95a7f330b8bb928eabaf9fcce75d;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git radix-tree: add an explicit include of bitops.h The radix-tree header uses the __ffs() function, which is defined in bitops.h. The current kernel headers implicitly include bitops.h, but the userspace test harness does not. Signed-off-by: Matthew Wilcox Cc: Johannes Weiner Cc: Matthew Wilcox Cc: "Kirill A. Shutemov" Cc: Ross Zwisler Cc: Hugh Dickins Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/include/linux/radix-tree.h b/include/linux/radix-tree.h index f54be7082207..39598b9cf1d9 100644 --- a/include/linux/radix-tree.h +++ b/include/linux/radix-tree.h @@ -21,6 +21,7 @@ #ifndef _LINUX_RADIX_TREE_H #define _LINUX_RADIX_TREE_H +#include #include #include #include