Merge tag 'block-5.11-2021-01-10' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / tools / perf / util / mem2node.c
blob03a7d7b2773774a0775fe3a6706d5bb029b711cc
1 #include <errno.h>
2 #include <inttypes.h>
3 #include <asm/bug.h>
4 #include <linux/bitmap.h>
5 #include <linux/kernel.h>
6 #include <linux/zalloc.h>
7 #include "debug.h"
8 #include "env.h"
9 #include "mem2node.h"
11 struct phys_entry {
12 struct rb_node rb_node;
13 u64 start;
14 u64 end;
15 u64 node;
18 static void phys_entry__insert(struct phys_entry *entry, struct rb_root *root)
20 struct rb_node **p = &root->rb_node;
21 struct rb_node *parent = NULL;
22 struct phys_entry *e;
24 while (*p != NULL) {
25 parent = *p;
26 e = rb_entry(parent, struct phys_entry, rb_node);
28 if (entry->start < e->start)
29 p = &(*p)->rb_left;
30 else
31 p = &(*p)->rb_right;
34 rb_link_node(&entry->rb_node, parent, p);
35 rb_insert_color(&entry->rb_node, root);
38 static void
39 phys_entry__init(struct phys_entry *entry, u64 start, u64 bsize, u64 node)
41 entry->start = start;
42 entry->end = start + bsize;
43 entry->node = node;
44 RB_CLEAR_NODE(&entry->rb_node);
47 int mem2node__init(struct mem2node *map, struct perf_env *env)
49 struct memory_node *n, *nodes = &env->memory_nodes[0];
50 struct phys_entry *entries, *tmp_entries;
51 u64 bsize = env->memory_bsize;
52 int i, j = 0, max = 0;
54 memset(map, 0x0, sizeof(*map));
55 map->root = RB_ROOT;
57 for (i = 0; i < env->nr_memory_nodes; i++) {
58 n = &nodes[i];
59 max += bitmap_weight(n->set, n->size);
62 entries = zalloc(sizeof(*entries) * max);
63 if (!entries)
64 return -ENOMEM;
66 for (i = 0; i < env->nr_memory_nodes; i++) {
67 u64 bit;
69 n = &nodes[i];
71 for (bit = 0; bit < n->size; bit++) {
72 u64 start;
74 if (!test_bit(bit, n->set))
75 continue;
77 start = bit * bsize;
80 * Merge nearby areas, we walk in order
81 * through the bitmap, so no need to sort.
83 if (j > 0) {
84 struct phys_entry *prev = &entries[j - 1];
86 if ((prev->end == start) &&
87 (prev->node == n->node)) {
88 prev->end += bsize;
89 continue;
93 phys_entry__init(&entries[j++], start, bsize, n->node);
97 /* Cut unused entries, due to merging. */
98 tmp_entries = realloc(entries, sizeof(*entries) * j);
99 if (tmp_entries ||
100 WARN_ONCE(j == 0, "No memory nodes, is CONFIG_MEMORY_HOTPLUG enabled?\n"))
101 entries = tmp_entries;
103 for (i = 0; i < j; i++) {
104 pr_debug("mem2node %03" PRIu64 " [0x%016" PRIx64 "-0x%016" PRIx64 "]\n",
105 entries[i].node, entries[i].start, entries[i].end);
107 phys_entry__insert(&entries[i], &map->root);
110 map->entries = entries;
111 return 0;
114 void mem2node__exit(struct mem2node *map)
116 zfree(&map->entries);
119 int mem2node__node(struct mem2node *map, u64 addr)
121 struct rb_node **p, *parent = NULL;
122 struct phys_entry *entry;
124 p = &map->root.rb_node;
125 while (*p != NULL) {
126 parent = *p;
127 entry = rb_entry(parent, struct phys_entry, rb_node);
128 if (addr < entry->start)
129 p = &(*p)->rb_left;
130 else if (addr >= entry->end)
131 p = &(*p)->rb_right;
132 else
133 goto out;
136 entry = NULL;
137 out:
138 return entry ? (int) entry->node : -1;