diff options
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); |