2 * include/linux/topology.h
4 * Written by: Matthew Dobson, IBM Corporation
6 * Copyright (C) 2002, IBM Corp.
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
18 * NON INFRINGEMENT. See the GNU General Public License for more
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 * Send feedback to <colpatch@us.ibm.com>
27 #ifndef _LINUX_TOPOLOGY_H
28 #define _LINUX_TOPOLOGY_H
30 #include <linux/cpumask.h>
31 #include <linux/bitops.h>
32 #include <linux/mmzone.h>
33 #include <linux/smp.h>
35 #include <asm/topology.h>
38 #define nr_cpus_node(node) \
41 __tmp__ = node_to_cpumask(node); \
42 cpus_weight(__tmp__); \
46 static inline int __next_node_with_cpus(int node
)
50 while (node
< numnodes
&& !nr_cpus_node(node
));
54 #define for_each_node_with_cpus(node) \
55 for (node = 0; node < numnodes; node = __next_node_with_cpus(node))
58 #define node_distance(from,to) ((from) != (to))
60 #ifndef PENALTY_FOR_NODE_WITH_CPUS
61 #define PENALTY_FOR_NODE_WITH_CPUS (1)
64 #endif /* _LINUX_TOPOLOGY_H */