diff options
-rw-r--r-- | drivers/base/cpu.c | 2 | ||||
-rw-r--r-- | drivers/base/node.c | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/drivers/base/cpu.c b/drivers/base/cpu.c index f829a4c71749..f160ea44a86d 100644 --- a/drivers/base/cpu.c +++ b/drivers/base/cpu.c | |||
@@ -245,7 +245,7 @@ static ssize_t print_cpus_offline(struct device *dev, | |||
245 | if (!alloc_cpumask_var(&offline, GFP_KERNEL)) | 245 | if (!alloc_cpumask_var(&offline, GFP_KERNEL)) |
246 | return -ENOMEM; | 246 | return -ENOMEM; |
247 | cpumask_andnot(offline, cpu_possible_mask, cpu_online_mask); | 247 | cpumask_andnot(offline, cpu_possible_mask, cpu_online_mask); |
248 | n = cpulist_scnprintf(buf, len, offline); | 248 | n = scnprintf(buf, len, "%*pbl", cpumask_pr_args(offline)); |
249 | free_cpumask_var(offline); | 249 | free_cpumask_var(offline); |
250 | 250 | ||
251 | /* display offline cpus >= nr_cpu_ids */ | 251 | /* display offline cpus >= nr_cpu_ids */ |
diff --git a/drivers/base/node.c b/drivers/base/node.c index a3b82e9c7f20..36fabe43cd44 100644 --- a/drivers/base/node.c +++ b/drivers/base/node.c | |||
@@ -605,7 +605,8 @@ static ssize_t print_nodes_state(enum node_states state, char *buf) | |||
605 | { | 605 | { |
606 | int n; | 606 | int n; |
607 | 607 | ||
608 | n = nodelist_scnprintf(buf, PAGE_SIZE-2, node_states[state]); | 608 | n = scnprintf(buf, PAGE_SIZE - 1, "%*pbl", |
609 | nodemask_pr_args(&node_states[state])); | ||
609 | buf[n++] = '\n'; | 610 | buf[n++] = '\n'; |
610 | buf[n] = '\0'; | 611 | buf[n] = '\0'; |
611 | return n; | 612 | return n; |