diff options
Diffstat (limited to 'include/linux/cpumask.h')
-rw-r--r-- | include/linux/cpumask.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/cpumask.h b/include/linux/cpumask.h index 7047f58306a7..67e0e38d32b1 100644 --- a/include/linux/cpumask.h +++ b/include/linux/cpumask.h | |||
@@ -273,6 +273,13 @@ static inline int __cpumask_scnprintf(char *buf, int len, | |||
273 | return bitmap_scnprintf(buf, len, srcp->bits, nbits); | 273 | return bitmap_scnprintf(buf, len, srcp->bits, nbits); |
274 | } | 274 | } |
275 | 275 | ||
276 | #define cpumask_scnprintf_len(len) \ | ||
277 | __cpumask_scnprintf_len((len)) | ||
278 | static inline int __cpumask_scnprintf_len(int len) | ||
279 | { | ||
280 | return bitmap_scnprintf_len(len); | ||
281 | } | ||
282 | |||
276 | #define cpumask_parse_user(ubuf, ulen, dst) \ | 283 | #define cpumask_parse_user(ubuf, ulen, dst) \ |
277 | __cpumask_parse_user((ubuf), (ulen), &(dst), NR_CPUS) | 284 | __cpumask_parse_user((ubuf), (ulen), &(dst), NR_CPUS) |
278 | static inline int __cpumask_parse_user(const char __user *buf, int len, | 285 | static inline int __cpumask_parse_user(const char __user *buf, int len, |