nodemask.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:11k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef __LINUX_NODEMASK_H
  2. #define __LINUX_NODEMASK_H
  3. /*
  4.  * Nodemasks provide a bitmap suitable for representing the
  5.  * set of Node's in a system, one bit position per Node number.
  6.  *
  7.  * See detailed comments in the file linux/bitmap.h describing the
  8.  * data type on which these nodemasks are based.
  9.  *
  10.  * For details of nodemask_scnprintf() and nodemask_parse(),
  11.  * see bitmap_scnprintf() and bitmap_parse() in lib/bitmap.c.
  12.  * For details of nodelist_scnprintf() and nodelist_parse(), see
  13.  * bitmap_scnlistprintf() and bitmap_parselist(), also in bitmap.c.
  14.  *
  15.  * The available nodemask operations are:
  16.  *
  17.  * void node_set(node, mask) turn on bit 'node' in mask
  18.  * void node_clear(node, mask) turn off bit 'node' in mask
  19.  * void nodes_setall(mask) set all bits
  20.  * void nodes_clear(mask) clear all bits
  21.  * int node_isset(node, mask) true iff bit 'node' set in mask
  22.  * int node_test_and_set(node, mask) test and set bit 'node' in mask
  23.  *
  24.  * void nodes_and(dst, src1, src2) dst = src1 & src2  [intersection]
  25.  * void nodes_or(dst, src1, src2) dst = src1 | src2  [union]
  26.  * void nodes_xor(dst, src1, src2) dst = src1 ^ src2
  27.  * void nodes_andnot(dst, src1, src2) dst = src1 & ~src2
  28.  * void nodes_complement(dst, src) dst = ~src
  29.  *
  30.  * int nodes_equal(mask1, mask2) Does mask1 == mask2?
  31.  * int nodes_intersects(mask1, mask2) Do mask1 and mask2 intersect?
  32.  * int nodes_subset(mask1, mask2) Is mask1 a subset of mask2?
  33.  * int nodes_empty(mask) Is mask empty (no bits sets)?
  34.  * int nodes_full(mask) Is mask full (all bits sets)?
  35.  * int nodes_weight(mask) Hamming weight - number of set bits
  36.  *
  37.  * void nodes_shift_right(dst, src, n) Shift right
  38.  * void nodes_shift_left(dst, src, n) Shift left
  39.  *
  40.  * int first_node(mask) Number lowest set bit, or MAX_NUMNODES
  41.  * int next_node(node, mask) Next node past 'node', or MAX_NUMNODES
  42.  * int first_unset_node(mask) First node not set in mask, or 
  43.  * MAX_NUMNODES.
  44.  *
  45.  * nodemask_t nodemask_of_node(node) Return nodemask with bit 'node' set
  46.  * NODE_MASK_ALL Initializer - all bits set
  47.  * NODE_MASK_NONE Initializer - no bits set
  48.  * unsigned long *nodes_addr(mask) Array of unsigned long's in mask
  49.  *
  50.  * int nodemask_scnprintf(buf, len, mask) Format nodemask for printing
  51.  * int nodemask_parse(ubuf, ulen, mask) Parse ascii string as nodemask
  52.  * int nodelist_scnprintf(buf, len, mask) Format nodemask as list for printing
  53.  * int nodelist_parse(buf, map) Parse ascii string as nodelist
  54.  *
  55.  * for_each_node_mask(node, mask) for-loop node over mask
  56.  *
  57.  * int num_online_nodes() Number of online Nodes
  58.  * int num_possible_nodes() Number of all possible Nodes
  59.  *
  60.  * int node_online(node) Is some node online?
  61.  * int node_possible(node) Is some node possible?
  62.  *
  63.  * int any_online_node(mask) First online node in mask
  64.  *
  65.  * node_set_online(node) set bit 'node' in node_online_map
  66.  * node_set_offline(node) clear bit 'node' in node_online_map
  67.  *
  68.  * for_each_node(node) for-loop node over node_possible_map
  69.  * for_each_online_node(node) for-loop node over node_online_map
  70.  *
  71.  * Subtlety:
  72.  * 1) The 'type-checked' form of node_isset() causes gcc (3.3.2, anyway)
  73.  *    to generate slightly worse code.  So use a simple one-line #define
  74.  *    for node_isset(), instead of wrapping an inline inside a macro, the
  75.  *    way we do the other calls.
  76.  */
  77. #include <linux/kernel.h>
  78. #include <linux/threads.h>
  79. #include <linux/bitmap.h>
  80. #include <linux/numa.h>
  81. #include <asm/bug.h>
  82. typedef struct { DECLARE_BITMAP(bits, MAX_NUMNODES); } nodemask_t;
  83. extern nodemask_t _unused_nodemask_arg_;
  84. #define node_set(node, dst) __node_set((node), &(dst))
  85. static inline void __node_set(int node, volatile nodemask_t *dstp)
  86. {
  87. set_bit(node, dstp->bits);
  88. }
  89. #define node_clear(node, dst) __node_clear((node), &(dst))
  90. static inline void __node_clear(int node, volatile nodemask_t *dstp)
  91. {
  92. clear_bit(node, dstp->bits);
  93. }
  94. #define nodes_setall(dst) __nodes_setall(&(dst), MAX_NUMNODES)
  95. static inline void __nodes_setall(nodemask_t *dstp, int nbits)
  96. {
  97. bitmap_fill(dstp->bits, nbits);
  98. }
  99. #define nodes_clear(dst) __nodes_clear(&(dst), MAX_NUMNODES)
  100. static inline void __nodes_clear(nodemask_t *dstp, int nbits)
  101. {
  102. bitmap_zero(dstp->bits, nbits);
  103. }
  104. /* No static inline type checking - see Subtlety (1) above. */
  105. #define node_isset(node, nodemask) test_bit((node), (nodemask).bits)
  106. #define node_test_and_set(node, nodemask) 
  107. __node_test_and_set((node), &(nodemask))
  108. static inline int __node_test_and_set(int node, nodemask_t *addr)
  109. {
  110. return test_and_set_bit(node, addr->bits);
  111. }
  112. #define nodes_and(dst, src1, src2) 
  113. __nodes_and(&(dst), &(src1), &(src2), MAX_NUMNODES)
  114. static inline void __nodes_and(nodemask_t *dstp, const nodemask_t *src1p,
  115. const nodemask_t *src2p, int nbits)
  116. {
  117. bitmap_and(dstp->bits, src1p->bits, src2p->bits, nbits);
  118. }
  119. #define nodes_or(dst, src1, src2) 
  120. __nodes_or(&(dst), &(src1), &(src2), MAX_NUMNODES)
  121. static inline void __nodes_or(nodemask_t *dstp, const nodemask_t *src1p,
  122. const nodemask_t *src2p, int nbits)
  123. {
  124. bitmap_or(dstp->bits, src1p->bits, src2p->bits, nbits);
  125. }
  126. #define nodes_xor(dst, src1, src2) 
  127. __nodes_xor(&(dst), &(src1), &(src2), MAX_NUMNODES)
  128. static inline void __nodes_xor(nodemask_t *dstp, const nodemask_t *src1p,
  129. const nodemask_t *src2p, int nbits)
  130. {
  131. bitmap_xor(dstp->bits, src1p->bits, src2p->bits, nbits);
  132. }
  133. #define nodes_andnot(dst, src1, src2) 
  134. __nodes_andnot(&(dst), &(src1), &(src2), MAX_NUMNODES)
  135. static inline void __nodes_andnot(nodemask_t *dstp, const nodemask_t *src1p,
  136. const nodemask_t *src2p, int nbits)
  137. {
  138. bitmap_andnot(dstp->bits, src1p->bits, src2p->bits, nbits);
  139. }
  140. #define nodes_complement(dst, src) 
  141. __nodes_complement(&(dst), &(src), MAX_NUMNODES)
  142. static inline void __nodes_complement(nodemask_t *dstp,
  143. const nodemask_t *srcp, int nbits)
  144. {
  145. bitmap_complement(dstp->bits, srcp->bits, nbits);
  146. }
  147. #define nodes_equal(src1, src2) 
  148. __nodes_equal(&(src1), &(src2), MAX_NUMNODES)
  149. static inline int __nodes_equal(const nodemask_t *src1p,
  150. const nodemask_t *src2p, int nbits)
  151. {
  152. return bitmap_equal(src1p->bits, src2p->bits, nbits);
  153. }
  154. #define nodes_intersects(src1, src2) 
  155. __nodes_intersects(&(src1), &(src2), MAX_NUMNODES)
  156. static inline int __nodes_intersects(const nodemask_t *src1p,
  157. const nodemask_t *src2p, int nbits)
  158. {
  159. return bitmap_intersects(src1p->bits, src2p->bits, nbits);
  160. }
  161. #define nodes_subset(src1, src2) 
  162. __nodes_subset(&(src1), &(src2), MAX_NUMNODES)
  163. static inline int __nodes_subset(const nodemask_t *src1p,
  164. const nodemask_t *src2p, int nbits)
  165. {
  166. return bitmap_subset(src1p->bits, src2p->bits, nbits);
  167. }
  168. #define nodes_empty(src) __nodes_empty(&(src), MAX_NUMNODES)
  169. static inline int __nodes_empty(const nodemask_t *srcp, int nbits)
  170. {
  171. return bitmap_empty(srcp->bits, nbits);
  172. }
  173. #define nodes_full(nodemask) __nodes_full(&(nodemask), MAX_NUMNODES)
  174. static inline int __nodes_full(const nodemask_t *srcp, int nbits)
  175. {
  176. return bitmap_full(srcp->bits, nbits);
  177. }
  178. #define nodes_weight(nodemask) __nodes_weight(&(nodemask), MAX_NUMNODES)
  179. static inline int __nodes_weight(const nodemask_t *srcp, int nbits)
  180. {
  181. return bitmap_weight(srcp->bits, nbits);
  182. }
  183. #define nodes_shift_right(dst, src, n) 
  184. __nodes_shift_right(&(dst), &(src), (n), MAX_NUMNODES)
  185. static inline void __nodes_shift_right(nodemask_t *dstp,
  186. const nodemask_t *srcp, int n, int nbits)
  187. {
  188. bitmap_shift_right(dstp->bits, srcp->bits, n, nbits);
  189. }
  190. #define nodes_shift_left(dst, src, n) 
  191. __nodes_shift_left(&(dst), &(src), (n), MAX_NUMNODES)
  192. static inline void __nodes_shift_left(nodemask_t *dstp,
  193. const nodemask_t *srcp, int n, int nbits)
  194. {
  195. bitmap_shift_left(dstp->bits, srcp->bits, n, nbits);
  196. }
  197. /* FIXME: better would be to fix all architectures to never return
  198.           > MAX_NUMNODES, then the silly min_ts could be dropped. */
  199. #define first_node(src) __first_node(&(src))
  200. static inline int __first_node(const nodemask_t *srcp)
  201. {
  202. return min_t(int, MAX_NUMNODES, find_first_bit(srcp->bits, MAX_NUMNODES));
  203. }
  204. #define next_node(n, src) __next_node((n), &(src))
  205. static inline int __next_node(int n, const nodemask_t *srcp)
  206. {
  207. return min_t(int,MAX_NUMNODES,find_next_bit(srcp->bits, MAX_NUMNODES, n+1));
  208. }
  209. #define nodemask_of_node(node)
  210. ({
  211. typeof(_unused_nodemask_arg_) m;
  212. if (sizeof(m) == sizeof(unsigned long)) {
  213. m.bits[0] = 1UL<<(node);
  214. } else {
  215. nodes_clear(m);
  216. node_set((node), m);
  217. }
  218. m;
  219. })
  220. #define first_unset_node(mask) __first_unset_node(&(mask))
  221. static inline int __first_unset_node(const nodemask_t *maskp)
  222. {
  223. return min_t(int,MAX_NUMNODES,
  224. find_first_zero_bit(maskp->bits, MAX_NUMNODES));
  225. }
  226. #define NODE_MASK_LAST_WORD BITMAP_LAST_WORD_MASK(MAX_NUMNODES)
  227. #if MAX_NUMNODES <= BITS_PER_LONG
  228. #define NODE_MASK_ALL
  229. ((nodemask_t) { {
  230. [BITS_TO_LONGS(MAX_NUMNODES)-1] = NODE_MASK_LAST_WORD
  231. } })
  232. #else
  233. #define NODE_MASK_ALL
  234. ((nodemask_t) { {
  235. [0 ... BITS_TO_LONGS(MAX_NUMNODES)-2] = ~0UL,
  236. [BITS_TO_LONGS(MAX_NUMNODES)-1] = NODE_MASK_LAST_WORD
  237. } })
  238. #endif
  239. #define NODE_MASK_NONE
  240. ((nodemask_t) { {
  241. [0 ... BITS_TO_LONGS(MAX_NUMNODES)-1] =  0UL
  242. } })
  243. #define nodes_addr(src) ((src).bits)
  244. #define nodemask_scnprintf(buf, len, src) 
  245. __nodemask_scnprintf((buf), (len), &(src), MAX_NUMNODES)
  246. static inline int __nodemask_scnprintf(char *buf, int len,
  247. const nodemask_t *srcp, int nbits)
  248. {
  249. return bitmap_scnprintf(buf, len, srcp->bits, nbits);
  250. }
  251. #define nodemask_parse(ubuf, ulen, dst) 
  252. __nodemask_parse((ubuf), (ulen), &(dst), MAX_NUMNODES)
  253. static inline int __nodemask_parse(const char __user *buf, int len,
  254. nodemask_t *dstp, int nbits)
  255. {
  256. return bitmap_parse(buf, len, dstp->bits, nbits);
  257. }
  258. #define nodelist_scnprintf(buf, len, src) 
  259. __nodelist_scnprintf((buf), (len), &(src), MAX_NUMNODES)
  260. static inline int __nodelist_scnprintf(char *buf, int len,
  261. const nodemask_t *srcp, int nbits)
  262. {
  263. return bitmap_scnlistprintf(buf, len, srcp->bits, nbits);
  264. }
  265. #define nodelist_parse(buf, dst) __nodelist_parse((buf), &(dst), MAX_NUMNODES)
  266. static inline int __nodelist_parse(const char *buf, nodemask_t *dstp, int nbits)
  267. {
  268. return bitmap_parselist(buf, dstp->bits, nbits);
  269. }
  270. #if MAX_NUMNODES > 1
  271. #define for_each_node_mask(node, mask)
  272. for ((node) = first_node(mask);
  273. (node) < MAX_NUMNODES;
  274. (node) = next_node((node), (mask)))
  275. #else /* MAX_NUMNODES == 1 */
  276. #define for_each_node_mask(node, mask)
  277. if (!nodes_empty(mask))
  278. for ((node) = 0; (node) < 1; (node)++)
  279. #endif /* MAX_NUMNODES */
  280. /*
  281.  * The following particular system nodemasks and operations
  282.  * on them manage all possible and online nodes.
  283.  */
  284. extern nodemask_t node_online_map;
  285. extern nodemask_t node_possible_map;
  286. #if MAX_NUMNODES > 1
  287. #define num_online_nodes() nodes_weight(node_online_map)
  288. #define num_possible_nodes() nodes_weight(node_possible_map)
  289. #define node_online(node) node_isset((node), node_online_map)
  290. #define node_possible(node) node_isset((node), node_possible_map)
  291. #else
  292. #define num_online_nodes() 1
  293. #define num_possible_nodes() 1
  294. #define node_online(node) ((node) == 0)
  295. #define node_possible(node) ((node) == 0)
  296. #endif
  297. #define any_online_node(mask)
  298. ({
  299. int node;
  300. for_each_node_mask(node, (mask))
  301. if (node_online(node))
  302. break;
  303. node;
  304. })
  305. #define node_set_online(node)    set_bit((node), node_online_map.bits)
  306. #define node_set_offline(node)    clear_bit((node), node_online_map.bits)
  307. #define for_each_node(node)    for_each_node_mask((node), node_possible_map)
  308. #define for_each_online_node(node) for_each_node_mask((node), node_online_map)
  309. #endif /* __LINUX_NODEMASK_H */