diff mbox series

[4/3] nodemask: Don't opencode cycle_node()

Message ID 20190625145823.17544-1-andrew.cooper3@citrix.com (mailing list archive)
State New, archived
Headers show
Series nodemask: API cleanup and fixes | expand

Commit Message

Andrew Cooper June 25, 2019, 2:58 p.m. UTC
No functional change.

Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
---
CC: Jan Beulich <JBeulich@suse.com>
CC: Wei Liu <wl@xen.org>
CC: Roger Pau Monné <roger.pau@citrix.com>
CC: Stefano Stabellini <sstabellini@kernel.org>
CC: Julien Grall <julien.grall@arm.com>
CC: George Dunlap <george.dunlap@eu.citrix.com>
---
 xen/arch/x86/numa.c     | 4 +---
 xen/common/page_alloc.c | 7 ++-----
 2 files changed, 3 insertions(+), 8 deletions(-)

Comments

Jan Beulich June 25, 2019, 3:51 p.m. UTC | #1
>>> On 25.06.19 at 16:58, <andrew.cooper3@citrix.com> wrote:
> No functional change.
> 
> Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>

Acked-by: Jan Beulich <jbeulich@suse.com>
diff mbox series

Patch

diff --git a/xen/arch/x86/numa.c b/xen/arch/x86/numa.c
index c36c69e842..f7d320f207 100644
--- a/xen/arch/x86/numa.c
+++ b/xen/arch/x86/numa.c
@@ -192,9 +192,7 @@  void __init numa_init_array(void)
         if ( cpu_to_node[i] != NUMA_NO_NODE )
             continue;
         numa_set_node(i, rr);
-        rr = next_node(rr, &node_online_map);
-        if ( rr == MAX_NUMNODES )
-            rr = first_node(&node_online_map);
+        rr = cycle_node(rr, &node_online_map);
     }
 }
 
diff --git a/xen/common/page_alloc.c b/xen/common/page_alloc.c
index fe1159b352..8858766c97 100644
--- a/xen/common/page_alloc.c
+++ b/xen/common/page_alloc.c
@@ -823,11 +823,8 @@  static struct page_info *get_free_buddy(unsigned int zone_lo,
     if ( node == NUMA_NO_NODE )
     {
         if ( d != NULL )
-        {
-            node = next_node(d->last_alloc_node, &nodemask);
-            if ( node >= MAX_NUMNODES )
-                node = first_node(&nodemask);
-        }
+            node = cycle_node(d->last_alloc_node, &nodemask);
+
         if ( node >= MAX_NUMNODES )
             node = cpu_to_node(smp_processor_id());
     }