blob: f6ad9c2775a8b28cc68880a40a085f69aaf7a626 [file] [log] [blame]
Andrew Morton0edaf862016-05-19 17:10:58 -07001#include <linux/nodemask.h>
2#include <linux/module.h>
3#include <linux/random.h>
4
Kees Cook2811cda2022-05-18 13:52:23 -07005unsigned int __next_node_in(int node, const nodemask_t *srcp)
Andrew Morton0edaf862016-05-19 17:10:58 -07006{
Kees Cook2811cda2022-05-18 13:52:23 -07007 unsigned int ret = __next_node(node, srcp);
Andrew Morton0edaf862016-05-19 17:10:58 -07008
9 if (ret == MAX_NUMNODES)
10 ret = __first_node(srcp);
11 return ret;
12}
13EXPORT_SYMBOL(__next_node_in);
14
15#ifdef CONFIG_NUMA
16/*
17 * Return the bit number of a random bit set in the nodemask.
18 * (returns NUMA_NO_NODE if nodemask is empty)
19 */
20int node_random(const nodemask_t *maskp)
21{
22 int w, bit = NUMA_NO_NODE;
23
24 w = nodes_weight(*maskp);
25 if (w)
26 bit = bitmap_ord_to_pos(maskp->bits,
27 get_random_int() % w, MAX_NUMNODES);
28 return bit;
29}
30#endif