diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2009-03-31 00:05:11 -0400 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2009-03-30 07:35:11 -0400 |
commit | af76aba00fdcfb21535c9f9872245d14097a4561 (patch) | |
tree | 221ec0b2cd01c7629abc1f30f0f563e1731c1683 /fs/seq_file.c | |
parent | 1a2142afa5646ad5af44bbe1febaa5e0b7e71156 (diff) |
cpumask: fix seq_bitmap_*() functions.
1) seq_bitmap_list() should take a const.
2) All the seq_bitmap should use cpumask_bits().
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'fs/seq_file.c')
-rw-r--r-- | fs/seq_file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/seq_file.c b/fs/seq_file.c index a1a4cfe19210..7f40f30c55c5 100644 --- a/fs/seq_file.c +++ b/fs/seq_file.c | |||
@@ -513,7 +513,7 @@ int seq_bitmap(struct seq_file *m, const unsigned long *bits, | |||
513 | } | 513 | } |
514 | EXPORT_SYMBOL(seq_bitmap); | 514 | EXPORT_SYMBOL(seq_bitmap); |
515 | 515 | ||
516 | int seq_bitmap_list(struct seq_file *m, unsigned long *bits, | 516 | int seq_bitmap_list(struct seq_file *m, const unsigned long *bits, |
517 | unsigned int nr_bits) | 517 | unsigned int nr_bits) |
518 | { | 518 | { |
519 | if (m->count < m->size) { | 519 | if (m->count < m->size) { |