diff options
author | Yury Norov <yury.norov@gmail.com> | 2025-02-14 20:40:01 +0100 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2025-02-16 06:52:19 -1000 |
commit | 14a8262f505bc4478c50e66309057bc0d0d4b62e (patch) | |
tree | a2573d083669eef13b97a51eac6e4bba07b8a7d8 /include/linux/nodemask.h | |
parent | 7665054ee0dd0caba6f5f7bae48aa5f221218496 (diff) |
nodemask: numa: reorganize inclusion path
Nodemasks now pull linux/numa.h for MAX_NUMNODES and NUMA_NO_NODE
macros. This series makes numa.h depending on nodemasks, so we hit
a circular dependency.
Nodemasks library is highly employed by NUMA code, and it would be
logical to resolve the circular dependency by making NUMA headers
dependent nodemask.h.
Signed-off-by: Yury Norov [NVIDIA] <yury.norov@gmail.com>
Signed-off-by: Andrea Righi <arighi@nvidia.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'include/linux/nodemask.h')
-rw-r--r-- | include/linux/nodemask.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/nodemask.h b/include/linux/nodemask.h index 41cf43c4e70f..f0ac0633366b 100644 --- a/include/linux/nodemask.h +++ b/include/linux/nodemask.h @@ -94,7 +94,6 @@ #include <linux/bitmap.h> #include <linux/minmax.h> #include <linux/nodemask_types.h> -#include <linux/numa.h> #include <linux/random.h> extern nodemask_t _unused_nodemask_arg_; |