diff options
author | Lai Jiangshan <laijs@cn.fujitsu.com> | 2008-10-18 23:28:19 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-20 11:52:39 -0400 |
commit | 3eda20118000941e7e8994fc5fac8706d8c10f00 (patch) | |
tree | 7873d4760af7801f8e5b95cc7d6b719894aad6f5 /fs/seq_file.c | |
parent | 85dd030edb174376ef43bc95e5fae4755af1ec98 (diff) |
seq_file: add seq_cpumask_list(), seq_nodemask_list()
seq_cpumask_list(), seq_nodemask_list() are very like seq_cpumask(),
seq_nodemask(), but they print human readable string.
Signed-off-by: Lai Jiangshan <laijs@cn.fujitsu.com>
Cc: Alexey Dobriyan <adobriyan@gmail.com>
Cc: Paul Menage <menage@google.com>
Cc: Paul Jackson <pj@sgi.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/seq_file.c')
-rw-r--r-- | fs/seq_file.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/fs/seq_file.c b/fs/seq_file.c index 11c85fec6b4f..eba2eabcd2b8 100644 --- a/fs/seq_file.c +++ b/fs/seq_file.c | |||
@@ -465,6 +465,22 @@ int seq_bitmap(struct seq_file *m, unsigned long *bits, unsigned int nr_bits) | |||
465 | } | 465 | } |
466 | EXPORT_SYMBOL(seq_bitmap); | 466 | EXPORT_SYMBOL(seq_bitmap); |
467 | 467 | ||
468 | int seq_bitmap_list(struct seq_file *m, unsigned long *bits, | ||
469 | unsigned int nr_bits) | ||
470 | { | ||
471 | if (m->count < m->size) { | ||
472 | int len = bitmap_scnlistprintf(m->buf + m->count, | ||
473 | m->size - m->count, bits, nr_bits); | ||
474 | if (m->count + len < m->size) { | ||
475 | m->count += len; | ||
476 | return 0; | ||
477 | } | ||
478 | } | ||
479 | m->count = m->size; | ||
480 | return -1; | ||
481 | } | ||
482 | EXPORT_SYMBOL(seq_bitmap_list); | ||
483 | |||
468 | static void *single_start(struct seq_file *p, loff_t *pos) | 484 | static void *single_start(struct seq_file *p, loff_t *pos) |
469 | { | 485 | { |
470 | return NULL + (*pos == 0); | 486 | return NULL + (*pos == 0); |