aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/cpumask.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/cpumask.h')
-rw-r--r--include/linux/cpumask.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/linux/cpumask.h b/include/linux/cpumask.h
index c717f5ea88cb..b3d2c1a89ac4 100644
--- a/include/linux/cpumask.h
+++ b/include/linux/cpumask.h
@@ -560,7 +560,7 @@ static inline void cpumask_copy(struct cpumask *dstp,
560static inline int cpumask_parse_user(const char __user *buf, int len, 560static inline int cpumask_parse_user(const char __user *buf, int len,
561 struct cpumask *dstp) 561 struct cpumask *dstp)
562{ 562{
563 return bitmap_parse_user(buf, len, cpumask_bits(dstp), nr_cpu_ids); 563 return bitmap_parse_user(buf, len, cpumask_bits(dstp), nr_cpumask_bits);
564} 564}
565 565
566/** 566/**
@@ -575,7 +575,7 @@ static inline int cpumask_parselist_user(const char __user *buf, int len,
575 struct cpumask *dstp) 575 struct cpumask *dstp)
576{ 576{
577 return bitmap_parselist_user(buf, len, cpumask_bits(dstp), 577 return bitmap_parselist_user(buf, len, cpumask_bits(dstp),
578 nr_cpu_ids); 578 nr_cpumask_bits);
579} 579}
580 580
581/** 581/**
@@ -590,7 +590,7 @@ static inline int cpumask_parse(const char *buf, struct cpumask *dstp)
590 char *nl = strchr(buf, '\n'); 590 char *nl = strchr(buf, '\n');
591 unsigned int len = nl ? (unsigned int)(nl - buf) : strlen(buf); 591 unsigned int len = nl ? (unsigned int)(nl - buf) : strlen(buf);
592 592
593 return bitmap_parse(buf, len, cpumask_bits(dstp), nr_cpu_ids); 593 return bitmap_parse(buf, len, cpumask_bits(dstp), nr_cpumask_bits);
594} 594}
595 595
596/** 596/**
@@ -602,7 +602,7 @@ static inline int cpumask_parse(const char *buf, struct cpumask *dstp)
602 */ 602 */
603static inline int cpulist_parse(const char *buf, struct cpumask *dstp) 603static inline int cpulist_parse(const char *buf, struct cpumask *dstp)
604{ 604{
605 return bitmap_parselist(buf, cpumask_bits(dstp), nr_cpu_ids); 605 return bitmap_parselist(buf, cpumask_bits(dstp), nr_cpumask_bits);
606} 606}
607 607
608/** 608/**