|
@@ -550,7 +550,7 @@ static inline void cpumask_copy(struct cpumask *dstp,
|
|
|
static inline int cpumask_scnprintf(char *buf, int len,
|
|
|
const struct cpumask *srcp)
|
|
|
{
|
|
|
- return bitmap_scnprintf(buf, len, cpumask_bits(srcp), nr_cpumask_bits);
|
|
|
+ return bitmap_scnprintf(buf, len, cpumask_bits(srcp), nr_cpu_ids);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -564,7 +564,7 @@ static inline int cpumask_scnprintf(char *buf, int len,
|
|
|
static inline int cpumask_parse_user(const char __user *buf, int len,
|
|
|
struct cpumask *dstp)
|
|
|
{
|
|
|
- return bitmap_parse_user(buf, len, cpumask_bits(dstp), nr_cpumask_bits);
|
|
|
+ return bitmap_parse_user(buf, len, cpumask_bits(dstp), nr_cpu_ids);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -579,7 +579,7 @@ static inline int cpumask_parselist_user(const char __user *buf, int len,
|
|
|
struct cpumask *dstp)
|
|
|
{
|
|
|
return bitmap_parselist_user(buf, len, cpumask_bits(dstp),
|
|
|
- nr_cpumask_bits);
|
|
|
+ nr_cpu_ids);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -595,7 +595,7 @@ static inline int cpulist_scnprintf(char *buf, int len,
|
|
|
const struct cpumask *srcp)
|
|
|
{
|
|
|
return bitmap_scnlistprintf(buf, len, cpumask_bits(srcp),
|
|
|
- nr_cpumask_bits);
|
|
|
+ nr_cpu_ids);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -610,7 +610,7 @@ static inline int cpumask_parse(const char *buf, struct cpumask *dstp)
|
|
|
char *nl = strchr(buf, '\n');
|
|
|
unsigned int len = nl ? (unsigned int)(nl - buf) : strlen(buf);
|
|
|
|
|
|
- return bitmap_parse(buf, len, cpumask_bits(dstp), nr_cpumask_bits);
|
|
|
+ return bitmap_parse(buf, len, cpumask_bits(dstp), nr_cpu_ids);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -622,7 +622,7 @@ static inline int cpumask_parse(const char *buf, struct cpumask *dstp)
|
|
|
*/
|
|
|
static inline int cpulist_parse(const char *buf, struct cpumask *dstp)
|
|
|
{
|
|
|
- return bitmap_parselist(buf, cpumask_bits(dstp), nr_cpumask_bits);
|
|
|
+ return bitmap_parselist(buf, cpumask_bits(dstp), nr_cpu_ids);
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -817,7 +817,7 @@ static inline ssize_t
|
|
|
cpumap_print_to_pagebuf(bool list, char *buf, const struct cpumask *mask)
|
|
|
{
|
|
|
return bitmap_print_to_pagebuf(list, buf, cpumask_bits(mask),
|
|
|
- nr_cpumask_bits);
|
|
|
+ nr_cpu_ids);
|
|
|
}
|
|
|
|
|
|
/*
|