diff options
author | Yury Norov <yury.norov@gmail.com> | 2022-02-10 14:49:09 -0800 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2022-04-10 22:35:38 +0200 |
commit | c2a911d302b0d014a4d0d732a2bfc319e643eb62 (patch) | |
tree | 0f64c293a81e4637a1ddaec7f8456d45090339fb /arch/x86/mm/amdtopology.c | |
parent | 3a5ff1f6dd50f5e1c2aa87491910dd6d275af24b (diff) | |
download | linux-c2a911d302b0d014a4d0d732a2bfc319e643eb62.tar.gz linux-c2a911d302b0d014a4d0d732a2bfc319e643eb62.tar.bz2 linux-c2a911d302b0d014a4d0d732a2bfc319e643eb62.zip |
x86/mm: Replace nodes_weight() with nodes_empty() where appropriate
Various mm code calls nodes_weight() to check if any bit of a given
nodemask is set.
This can be done more efficiently with nodes_empty() because nodes_empty()
stops traversing the nodemask as soon as it finds first set bit, while
nodes_weight() counts all bits unconditionally.
Signed-off-by: Yury Norov <yury.norov@gmail.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/r/20220210224933.379149-26-yury.norov@gmail.com
Diffstat (limited to 'arch/x86/mm/amdtopology.c')
-rw-r--r-- | arch/x86/mm/amdtopology.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/mm/amdtopology.c b/arch/x86/mm/amdtopology.c index 058b2f36b3a6..b3ca7d23e4b0 100644 --- a/arch/x86/mm/amdtopology.c +++ b/arch/x86/mm/amdtopology.c @@ -154,7 +154,7 @@ int __init amd_numa_init(void) node_set(nodeid, numa_nodes_parsed); } - if (!nodes_weight(numa_nodes_parsed)) + if (nodes_empty(numa_nodes_parsed)) return -ENOENT; /* |