diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2008-12-29 17:35:14 -0500 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2008-12-29 17:35:14 -0500 |
commit | cb78a0ce69fad2026825f957e24e2d9cda1ec9f1 (patch) | |
tree | 9a1359350c46f34394f715d9bebadc9cde842fa5 /fs | |
parent | 4b0bc0bca83f3fb7cf920e2ec80684c15d2269c0 (diff) |
bitmap: fix seq_bitmap and seq_cpumask to take const pointer
Impact: cleanup
seq_bitmap just calls bitmap_scnprintf on the bits: that arg can be const.
Similarly, seq_cpumask just calls seq_bitmap.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/seq_file.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/seq_file.c b/fs/seq_file.c index 16c211558c22..c99358a52176 100644 --- a/fs/seq_file.c +++ b/fs/seq_file.c | |||
@@ -462,7 +462,8 @@ int seq_dentry(struct seq_file *m, struct dentry *dentry, char *esc) | |||
462 | return -1; | 462 | return -1; |
463 | } | 463 | } |
464 | 464 | ||
465 | int seq_bitmap(struct seq_file *m, unsigned long *bits, unsigned int nr_bits) | 465 | int seq_bitmap(struct seq_file *m, const unsigned long *bits, |
466 | unsigned int nr_bits) | ||
466 | { | 467 | { |
467 | if (m->count < m->size) { | 468 | if (m->count < m->size) { |
468 | int len = bitmap_scnprintf(m->buf + m->count, | 469 | int len = bitmap_scnprintf(m->buf + m->count, |