diff options
author | Tejun Heo <tj@kernel.org> | 2015-02-13 17:38:15 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-02-14 00:21:39 -0500 |
commit | 46385326cc1577587ed3e7432c2425cf6d3e4308 (patch) | |
tree | a4a87d47fb4ef5853c5c31236a272c22a9304caf /fs/seq_file.c | |
parent | ccbd59c1c104d6e42e949e2588563bfe25d9d98f (diff) |
bitmap, cpumask, nodemask: remove dedicated formatting functions
Now that all bitmap formatting usages have been converted to
'%*pb[l]', the separate formatting functions are unnecessary. The
following functions are removed.
* bitmap_scn[list]printf()
* cpumask_scnprintf(), cpulist_scnprintf()
* [__]nodemask_scnprintf(), [__]nodelist_scnprintf()
* seq_bitmap[_list](), seq_cpumask[_list](), seq_nodemask[_list]()
* seq_buf_bitmask()
Signed-off-by: Tejun Heo <tj@kernel.org>
Cc: Rusty Russell <rusty@rustcorp.com.au>
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 | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/fs/seq_file.c b/fs/seq_file.c index dbf3a59c86bb..555f82155be8 100644 --- a/fs/seq_file.c +++ b/fs/seq_file.c | |||
@@ -539,38 +539,6 @@ int seq_dentry(struct seq_file *m, struct dentry *dentry, const char *esc) | |||
539 | return res; | 539 | return res; |
540 | } | 540 | } |
541 | 541 | ||
542 | int seq_bitmap(struct seq_file *m, const unsigned long *bits, | ||
543 | unsigned int nr_bits) | ||
544 | { | ||
545 | if (m->count < m->size) { | ||
546 | int len = bitmap_scnprintf(m->buf + m->count, | ||
547 | m->size - m->count, bits, nr_bits); | ||
548 | if (m->count + len < m->size) { | ||
549 | m->count += len; | ||
550 | return 0; | ||
551 | } | ||
552 | } | ||
553 | seq_set_overflow(m); | ||
554 | return -1; | ||
555 | } | ||
556 | EXPORT_SYMBOL(seq_bitmap); | ||
557 | |||
558 | int seq_bitmap_list(struct seq_file *m, const unsigned long *bits, | ||
559 | unsigned int nr_bits) | ||
560 | { | ||
561 | if (m->count < m->size) { | ||
562 | int len = bitmap_scnlistprintf(m->buf + m->count, | ||
563 | m->size - m->count, bits, nr_bits); | ||
564 | if (m->count + len < m->size) { | ||
565 | m->count += len; | ||
566 | return 0; | ||
567 | } | ||
568 | } | ||
569 | seq_set_overflow(m); | ||
570 | return -1; | ||
571 | } | ||
572 | EXPORT_SYMBOL(seq_bitmap_list); | ||
573 | |||
574 | static void *single_start(struct seq_file *p, loff_t *pos) | 542 | static void *single_start(struct seq_file *p, loff_t *pos) |
575 | { | 543 | { |
576 | return NULL + (*pos == 0); | 544 | return NULL + (*pos == 0); |