Skip to content

Commit 4fb8e5b

Browse files
Waiman-Longsfrothwell
authored andcommitted
include/linux/nodemask.h: use nr_node_ids (not MAX_NUMNODES) in __nodemask_pr_numnodes()
When viewing the /proc/<pid>/status file, one can see output lines like Cpus_allowed: ffffffff,ffffffff,ffffffff Cpus_allowed_list: 0-95 Mems_allowed: 00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,00000000,0000000f Mems_allowed_list: 0-3 The "Mems_allowed" line uses the "%*pb" format string while the "Mems_allowed_list" line uses the "%*pbl" format string together with the nodemask_pr_args() macro. The "Mems_allowed" looks insane compared with the others. It is because the nodemask_pr_args() macro uses MAX_NUMNODES as the number of nodes to iterate. The cpumask_pr_args() macro uses nr_cpu_ids instead of MAX_CPUS. For nodes, there is a corresponding nr_node_ids. So it makes sense to use nr_node_ids instead to be consistent with "Cpus_allowed:". With that change, the "Mems_allowed" line becomes sane again. Mems_allowed: f There are currently 10 call sites of nodemask_pr_args() in the kernel. Of them, only cpuset_task_status_allowed() in kernel/cgroup/cpuset.c uses the "%*pb" format string that will be affected by this change. That cpuset function is called by proc_pid_status() only. Link: http://lkml.kernel.org/r/1545405631-6808-1-git-send-email-longman@redhat.com Signed-off-by: Waiman Long <longman@redhat.com> Reviewed-by: Andrew Morton <akpm@linux-foundation.org> Cc: Oscar Salvador <osalvador@suse.de> Cc: Tejun Heo <tj@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
1 parent 8739e49 commit 4fb8e5b

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

include/linux/nodemask.h

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,14 @@
9898
typedef struct { DECLARE_BITMAP(bits, MAX_NUMNODES); } nodemask_t;
9999
extern nodemask_t _unused_nodemask_arg_;
100100

101+
#if MAX_NUMNODES > 1
102+
extern int nr_node_ids;
103+
extern int nr_online_nodes;
104+
#else
105+
#define nr_node_ids 1
106+
#define nr_online_nodes 1
107+
#endif
108+
101109
/**
102110
* nodemask_pr_args - printf args to output a nodemask
103111
* @maskp: nodemask to be printed
@@ -108,7 +116,7 @@ extern nodemask_t _unused_nodemask_arg_;
108116
__nodemask_pr_bits(maskp)
109117
static inline unsigned int __nodemask_pr_numnodes(const nodemask_t *m)
110118
{
111-
return m ? MAX_NUMNODES : 0;
119+
return m ? nr_node_ids : 0;
112120
}
113121
static inline const unsigned long *__nodemask_pr_bits(const nodemask_t *m)
114122
{
@@ -444,9 +452,6 @@ static inline int next_memory_node(int nid)
444452
return next_node(nid, node_states[N_MEMORY]);
445453
}
446454

447-
extern int nr_node_ids;
448-
extern int nr_online_nodes;
449-
450455
static inline void node_set_online(int nid)
451456
{
452457
node_set_state(nid, N_ONLINE);
@@ -485,8 +490,6 @@ static inline int num_node_state(enum node_states state)
485490
#define first_online_node 0
486491
#define first_memory_node 0
487492
#define next_online_node(nid) (MAX_NUMNODES)
488-
#define nr_node_ids 1
489-
#define nr_online_nodes 1
490493

491494
#define node_set_online(node) node_set_state((node), N_ONLINE)
492495
#define node_set_offline(node) node_clear_state((node), N_ONLINE)

0 commit comments

Comments
 (0)