qemu-arm
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-arm] [PATCH v2 18/24] numa: remove no longer used numa_get_node_fo


From: Igor Mammedov
Subject: [Qemu-arm] [PATCH v2 18/24] numa: remove no longer used numa_get_node_for_cpu()
Date: Wed, 3 May 2017 14:57:12 +0200

it's been replaced by fetching mapping info from possible_cpus

Signed-off-by: Igor Mammedov <address@hidden>
Reviewed-by: David Gibson <address@hidden>
---
 include/sysemu/numa.h |  4 ----
 numa.c                | 14 --------------
 2 files changed, 18 deletions(-)

diff --git a/include/sysemu/numa.h b/include/sysemu/numa.h
index 98d01e6..9077bb2 100644
--- a/include/sysemu/numa.h
+++ b/include/sysemu/numa.h
@@ -32,10 +32,6 @@ void numa_set_mem_node_id(ram_addr_t addr, uint64_t size, 
uint32_t node);
 void numa_unset_mem_node_id(ram_addr_t addr, uint64_t size, uint32_t node);
 uint32_t numa_get_node(ram_addr_t addr, Error **errp);
 
-/* on success returns node index in numa_info,
- * on failure returns nb_numa_nodes */
-int numa_get_node_for_cpu(int idx);
-
 static inline bool numa_has_node_id(const CPUArchIdList *possible_cpus, int 
idx)
 {
     return possible_cpus->cpus[idx].props.has_node_id;
diff --git a/numa.c b/numa.c
index 872ee0d..06c42e9 100644
--- a/numa.c
+++ b/numa.c
@@ -583,20 +583,6 @@ MemdevList *qmp_query_memdev(Error **errp)
     return list;
 }
 
-int numa_get_node_for_cpu(int idx)
-{
-    int i;
-
-    assert(idx < max_cpus);
-
-    for (i = 0; i < nb_numa_nodes; i++) {
-        if (test_bit(idx, numa_info[i].node_cpu)) {
-            break;
-        }
-    }
-    return i;
-}
-
 void ram_block_notifier_add(RAMBlockNotifier *n)
 {
     QLIST_INSERT_HEAD(&ram_list.ramblock_notifiers, n, next);
-- 
2.7.4




reply via email to

[Prev in Thread] Current Thread [Next in Thread]