Unevictable LRU Page Statistics
[linux-2.6/libata-dev.git] / drivers / base / node.c
blob11a9a05cf5540f11105db223f6a318bdc1e0ca2d
1 /*
2 * drivers/base/node.c - basic Node class support
3 */
5 #include <linux/sysdev.h>
6 #include <linux/module.h>
7 #include <linux/init.h>
8 #include <linux/mm.h>
9 #include <linux/node.h>
10 #include <linux/hugetlb.h>
11 #include <linux/cpumask.h>
12 #include <linux/topology.h>
13 #include <linux/nodemask.h>
14 #include <linux/cpu.h>
15 #include <linux/device.h>
17 static struct sysdev_class node_class = {
18 .name = "node",
22 static ssize_t node_read_cpumap(struct sys_device *dev, int type, char *buf)
24 struct node *node_dev = to_node(dev);
25 node_to_cpumask_ptr(mask, node_dev->sysdev.id);
26 int len;
28 /* 2008/04/07: buf currently PAGE_SIZE, need 9 chars per 32 bits. */
29 BUILD_BUG_ON((NR_CPUS/32 * 9) > (PAGE_SIZE-1));
31 len = type?
32 cpulist_scnprintf(buf, PAGE_SIZE-2, *mask):
33 cpumask_scnprintf(buf, PAGE_SIZE-2, *mask);
34 buf[len++] = '\n';
35 buf[len] = '\0';
36 return len;
39 static inline ssize_t node_read_cpumask(struct sys_device *dev,
40 struct sysdev_attribute *attr, char *buf)
42 return node_read_cpumap(dev, 0, buf);
44 static inline ssize_t node_read_cpulist(struct sys_device *dev,
45 struct sysdev_attribute *attr, char *buf)
47 return node_read_cpumap(dev, 1, buf);
50 static SYSDEV_ATTR(cpumap, S_IRUGO, node_read_cpumask, NULL);
51 static SYSDEV_ATTR(cpulist, S_IRUGO, node_read_cpulist, NULL);
53 #define K(x) ((x) << (PAGE_SHIFT - 10))
54 static ssize_t node_read_meminfo(struct sys_device * dev,
55 struct sysdev_attribute *attr, char * buf)
57 int n;
58 int nid = dev->id;
59 struct sysinfo i;
61 si_meminfo_node(&i, nid);
63 n = sprintf(buf, "\n"
64 "Node %d MemTotal: %8lu kB\n"
65 "Node %d MemFree: %8lu kB\n"
66 "Node %d MemUsed: %8lu kB\n"
67 "Node %d Active: %8lu kB\n"
68 "Node %d Inactive: %8lu kB\n"
69 "Node %d Active(anon): %8lu kB\n"
70 "Node %d Inactive(anon): %8lu kB\n"
71 "Node %d Active(file): %8lu kB\n"
72 "Node %d Inactive(file): %8lu kB\n"
73 #ifdef CONFIG_UNEVICTABLE_LRU
74 "Node %d Noreclaim: %8lu kB\n"
75 #endif
76 #ifdef CONFIG_HIGHMEM
77 "Node %d HighTotal: %8lu kB\n"
78 "Node %d HighFree: %8lu kB\n"
79 "Node %d LowTotal: %8lu kB\n"
80 "Node %d LowFree: %8lu kB\n"
81 #endif
82 "Node %d Dirty: %8lu kB\n"
83 "Node %d Writeback: %8lu kB\n"
84 "Node %d FilePages: %8lu kB\n"
85 "Node %d Mapped: %8lu kB\n"
86 "Node %d AnonPages: %8lu kB\n"
87 "Node %d PageTables: %8lu kB\n"
88 "Node %d NFS_Unstable: %8lu kB\n"
89 "Node %d Bounce: %8lu kB\n"
90 "Node %d WritebackTmp: %8lu kB\n"
91 "Node %d Slab: %8lu kB\n"
92 "Node %d SReclaimable: %8lu kB\n"
93 "Node %d SUnreclaim: %8lu kB\n",
94 nid, K(i.totalram),
95 nid, K(i.freeram),
96 nid, K(i.totalram - i.freeram),
97 nid, K(node_page_state(nid, NR_ACTIVE_ANON) +
98 node_page_state(nid, NR_ACTIVE_FILE)),
99 nid, K(node_page_state(nid, NR_INACTIVE_ANON) +
100 node_page_state(nid, NR_INACTIVE_FILE)),
101 nid, K(node_page_state(nid, NR_ACTIVE_ANON)),
102 nid, K(node_page_state(nid, NR_INACTIVE_ANON)),
103 nid, K(node_page_state(nid, NR_ACTIVE_FILE)),
104 nid, K(node_page_state(nid, NR_INACTIVE_FILE)),
105 #ifdef CONFIG_UNEVICTABLE_LRU
106 nid, K(node_page_state(nid, NR_UNEVICTABLE)),
107 #endif
108 #ifdef CONFIG_HIGHMEM
109 nid, K(i.totalhigh),
110 nid, K(i.freehigh),
111 nid, K(i.totalram - i.totalhigh),
112 nid, K(i.freeram - i.freehigh),
113 #endif
114 nid, K(node_page_state(nid, NR_FILE_DIRTY)),
115 nid, K(node_page_state(nid, NR_WRITEBACK)),
116 nid, K(node_page_state(nid, NR_FILE_PAGES)),
117 nid, K(node_page_state(nid, NR_FILE_MAPPED)),
118 nid, K(node_page_state(nid, NR_ANON_PAGES)),
119 nid, K(node_page_state(nid, NR_PAGETABLE)),
120 nid, K(node_page_state(nid, NR_UNSTABLE_NFS)),
121 nid, K(node_page_state(nid, NR_BOUNCE)),
122 nid, K(node_page_state(nid, NR_WRITEBACK_TEMP)),
123 nid, K(node_page_state(nid, NR_SLAB_RECLAIMABLE) +
124 node_page_state(nid, NR_SLAB_UNRECLAIMABLE)),
125 nid, K(node_page_state(nid, NR_SLAB_RECLAIMABLE)),
126 nid, K(node_page_state(nid, NR_SLAB_UNRECLAIMABLE)));
127 n += hugetlb_report_node_meminfo(nid, buf + n);
128 return n;
131 #undef K
132 static SYSDEV_ATTR(meminfo, S_IRUGO, node_read_meminfo, NULL);
134 static ssize_t node_read_numastat(struct sys_device * dev,
135 struct sysdev_attribute *attr, char * buf)
137 return sprintf(buf,
138 "numa_hit %lu\n"
139 "numa_miss %lu\n"
140 "numa_foreign %lu\n"
141 "interleave_hit %lu\n"
142 "local_node %lu\n"
143 "other_node %lu\n",
144 node_page_state(dev->id, NUMA_HIT),
145 node_page_state(dev->id, NUMA_MISS),
146 node_page_state(dev->id, NUMA_FOREIGN),
147 node_page_state(dev->id, NUMA_INTERLEAVE_HIT),
148 node_page_state(dev->id, NUMA_LOCAL),
149 node_page_state(dev->id, NUMA_OTHER));
151 static SYSDEV_ATTR(numastat, S_IRUGO, node_read_numastat, NULL);
153 static ssize_t node_read_distance(struct sys_device * dev,
154 struct sysdev_attribute *attr, char * buf)
156 int nid = dev->id;
157 int len = 0;
158 int i;
160 /* buf currently PAGE_SIZE, need ~4 chars per node */
161 BUILD_BUG_ON(MAX_NUMNODES*4 > PAGE_SIZE/2);
163 for_each_online_node(i)
164 len += sprintf(buf + len, "%s%d", i ? " " : "", node_distance(nid, i));
166 len += sprintf(buf + len, "\n");
167 return len;
169 static SYSDEV_ATTR(distance, S_IRUGO, node_read_distance, NULL);
173 * register_node - Setup a sysfs device for a node.
174 * @num - Node number to use when creating the device.
176 * Initialize and register the node device.
178 int register_node(struct node *node, int num, struct node *parent)
180 int error;
182 node->sysdev.id = num;
183 node->sysdev.cls = &node_class;
184 error = sysdev_register(&node->sysdev);
186 if (!error){
187 sysdev_create_file(&node->sysdev, &attr_cpumap);
188 sysdev_create_file(&node->sysdev, &attr_cpulist);
189 sysdev_create_file(&node->sysdev, &attr_meminfo);
190 sysdev_create_file(&node->sysdev, &attr_numastat);
191 sysdev_create_file(&node->sysdev, &attr_distance);
193 return error;
197 * unregister_node - unregister a node device
198 * @node: node going away
200 * Unregisters a node device @node. All the devices on the node must be
201 * unregistered before calling this function.
203 void unregister_node(struct node *node)
205 sysdev_remove_file(&node->sysdev, &attr_cpumap);
206 sysdev_remove_file(&node->sysdev, &attr_cpulist);
207 sysdev_remove_file(&node->sysdev, &attr_meminfo);
208 sysdev_remove_file(&node->sysdev, &attr_numastat);
209 sysdev_remove_file(&node->sysdev, &attr_distance);
211 sysdev_unregister(&node->sysdev);
214 struct node node_devices[MAX_NUMNODES];
217 * register cpu under node
219 int register_cpu_under_node(unsigned int cpu, unsigned int nid)
221 if (node_online(nid)) {
222 struct sys_device *obj = get_cpu_sysdev(cpu);
223 if (!obj)
224 return 0;
225 return sysfs_create_link(&node_devices[nid].sysdev.kobj,
226 &obj->kobj,
227 kobject_name(&obj->kobj));
230 return 0;
233 int unregister_cpu_under_node(unsigned int cpu, unsigned int nid)
235 if (node_online(nid)) {
236 struct sys_device *obj = get_cpu_sysdev(cpu);
237 if (obj)
238 sysfs_remove_link(&node_devices[nid].sysdev.kobj,
239 kobject_name(&obj->kobj));
241 return 0;
244 int register_one_node(int nid)
246 int error = 0;
247 int cpu;
249 if (node_online(nid)) {
250 int p_node = parent_node(nid);
251 struct node *parent = NULL;
253 if (p_node != nid)
254 parent = &node_devices[p_node];
256 error = register_node(&node_devices[nid], nid, parent);
258 /* link cpu under this node */
259 for_each_present_cpu(cpu) {
260 if (cpu_to_node(cpu) == nid)
261 register_cpu_under_node(cpu, nid);
265 return error;
269 void unregister_one_node(int nid)
271 unregister_node(&node_devices[nid]);
275 * node states attributes
278 static ssize_t print_nodes_state(enum node_states state, char *buf)
280 int n;
282 n = nodelist_scnprintf(buf, PAGE_SIZE, node_states[state]);
283 if (n > 0 && PAGE_SIZE > n + 1) {
284 *(buf + n++) = '\n';
285 *(buf + n++) = '\0';
287 return n;
290 static ssize_t print_nodes_possible(struct sysdev_class *class, char *buf)
292 return print_nodes_state(N_POSSIBLE, buf);
295 static ssize_t print_nodes_online(struct sysdev_class *class, char *buf)
297 return print_nodes_state(N_ONLINE, buf);
300 static ssize_t print_nodes_has_normal_memory(struct sysdev_class *class,
301 char *buf)
303 return print_nodes_state(N_NORMAL_MEMORY, buf);
306 static ssize_t print_nodes_has_cpu(struct sysdev_class *class, char *buf)
308 return print_nodes_state(N_CPU, buf);
311 static SYSDEV_CLASS_ATTR(possible, 0444, print_nodes_possible, NULL);
312 static SYSDEV_CLASS_ATTR(online, 0444, print_nodes_online, NULL);
313 static SYSDEV_CLASS_ATTR(has_normal_memory, 0444, print_nodes_has_normal_memory,
314 NULL);
315 static SYSDEV_CLASS_ATTR(has_cpu, 0444, print_nodes_has_cpu, NULL);
317 #ifdef CONFIG_HIGHMEM
318 static ssize_t print_nodes_has_high_memory(struct sysdev_class *class,
319 char *buf)
321 return print_nodes_state(N_HIGH_MEMORY, buf);
324 static SYSDEV_CLASS_ATTR(has_high_memory, 0444, print_nodes_has_high_memory,
325 NULL);
326 #endif
328 struct sysdev_class_attribute *node_state_attr[] = {
329 &attr_possible,
330 &attr_online,
331 &attr_has_normal_memory,
332 #ifdef CONFIG_HIGHMEM
333 &attr_has_high_memory,
334 #endif
335 &attr_has_cpu,
338 static int node_states_init(void)
340 int i;
341 int err = 0;
343 for (i = 0; i < NR_NODE_STATES; i++) {
344 int ret;
345 ret = sysdev_class_create_file(&node_class, node_state_attr[i]);
346 if (!err)
347 err = ret;
349 return err;
352 static int __init register_node_type(void)
354 int ret;
356 ret = sysdev_class_register(&node_class);
357 if (!ret)
358 ret = node_states_init();
361 * Note: we're not going to unregister the node class if we fail
362 * to register the node state class attribute files.
364 return ret;
366 postcore_initcall(register_node_type);