* RFC [PATCH net-2.6 5/6] net: Added cpumask_parse
@ 2008-03-05 20:51 Tom Herbert
0 siblings, 0 replies; only message in thread
From: Tom Herbert @ 2008-03-05 20:51 UTC (permalink / raw)
To: davem, netdev
This patch adds the cpumask_parse function that allows parsing of a kernel buffer (analogous to bitmap_parse).
Signed-off-by: Tom Herbert <therbert@google.com>
---
diff -uprN -X /tmp/donts/cpumask net-2.6/include/linux/cpumask.h net-2.6.patch/include/linux/cpumask.h
--- net-2.6/include/linux/cpumask.h 2008-03-05 09:03:20.130056000 -0800
+++ net-2.6.patch/include/linux/cpumask.h 2008-03-05 09:25:33.435758000 -0800
@@ -49,6 +49,7 @@
* unsigned long *cpus_addr(mask) Array of unsigned long's in mask
*
* int cpumask_scnprintf(buf, len, mask) Format cpumask for printing
+ * int cpumask_parse(ubuf, ulen, mask) Parse ascii string as cpumask
* int cpumask_parse_user(ubuf, ulen, mask) Parse ascii string as cpumask
* int cpulist_scnprintf(buf, len, mask) Format cpumask as list for printing
* int cpulist_parse(buf, map) Parse ascii string as cpulist
@@ -273,6 +274,14 @@ static inline int __cpumask_scnprintf(ch
return bitmap_scnprintf(buf, len, srcp->bits, nbits);
}
+#define cpumask_parse(ubuf, ulen, dst) \
+ __cpumask_parse((ubuf), (ulen), &(dst), NR_CPUS)
+static inline int __cpumask_parse(const char __user *buf, int len,
+ cpumask_t *dstp, int nbits)
+{
+ return bitmap_parse(buf, len, dstp->bits, nbits);
+}
+
#define cpumask_parse_user(ubuf, ulen, dst) \
__cpumask_parse_user((ubuf), (ulen), &(dst), NR_CPUS)
static inline int __cpumask_parse_user(const char __user *buf, int len,
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-03-05 20:51 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-03-05 20:51 RFC [PATCH net-2.6 5/6] net: Added cpumask_parse Tom Herbert
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).