diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2021-11-08 18:32:38 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2021-11-09 10:02:49 -0800 |
commit | 98e1385ef24bd607586fbf44e73decd5112d3d4a (patch) | |
tree | af74365ef38e723fcb287a11f048f96d87d28b20 | |
parent | 1fcbd5deac51f30a7ed3f10bea422d08a2b3aba6 (diff) | |
download | linux-stable-98e1385ef24bd607586fbf44e73decd5112d3d4a.tar.gz linux-stable-98e1385ef24bd607586fbf44e73decd5112d3d4a.tar.bz2 linux-stable-98e1385ef24bd607586fbf44e73decd5112d3d4a.zip |
include/linux/radix-tree.h: replace kernel.h with the necessary inclusions
When kernel.h is used in the headers it adds a lot into dependency hell,
especially when there are circular dependencies are involved.
Replace kernel.h inclusion with the list of what is really being used.
Link: https://lkml.kernel.org/r/20211027150528.80003-1-andriy.shevchenko@linux.intel.com
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | include/linux/radix-tree.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/linux/radix-tree.h b/include/linux/radix-tree.h index 64ad900ac742..f7c1d21c2f39 100644 --- a/include/linux/radix-tree.h +++ b/include/linux/radix-tree.h @@ -9,8 +9,10 @@ #define _LINUX_RADIX_TREE_H #include <linux/bitops.h> -#include <linux/kernel.h> +#include <linux/gfp.h> #include <linux/list.h> +#include <linux/lockdep.h> +#include <linux/math.h> #include <linux/percpu.h> #include <linux/preempt.h> #include <linux/rcupdate.h> |