diff options
| author | Ingo Molnar <mingo@elte.hu> | 2009-09-24 06:59:11 -0400 |
|---|---|---|
| committer | Ingo Molnar <mingo@elte.hu> | 2009-09-24 06:59:18 -0400 |
| commit | d2ff6de537c61a0f05731c6679f3e1abc2d95e68 (patch) | |
| tree | 821aa38121f57a9d5419388ef10ea6f3aa445d4d /fs/dlm/debug_fs.c | |
| parent | e23a8b6a8f319c0f08b6ccef2dccbb37e7603dc2 (diff) | |
| parent | a724eada8c2a7b62463b73ccf73fd0bb6e928aeb (diff) | |
Merge branch 'linus' into x86/urgent
Merge reason: Queueing up dependent early-printk fix.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'fs/dlm/debug_fs.c')
| -rw-r--r-- | fs/dlm/debug_fs.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/fs/dlm/debug_fs.c b/fs/dlm/debug_fs.c index 1d1d27442235..1c8bb8c3a82e 100644 --- a/fs/dlm/debug_fs.c +++ b/fs/dlm/debug_fs.c | |||
| @@ -386,9 +386,9 @@ static int table_seq_show(struct seq_file *seq, void *iter_ptr) | |||
| 386 | return rv; | 386 | return rv; |
| 387 | } | 387 | } |
| 388 | 388 | ||
| 389 | static struct seq_operations format1_seq_ops; | 389 | static const struct seq_operations format1_seq_ops; |
| 390 | static struct seq_operations format2_seq_ops; | 390 | static const struct seq_operations format2_seq_ops; |
| 391 | static struct seq_operations format3_seq_ops; | 391 | static const struct seq_operations format3_seq_ops; |
| 392 | 392 | ||
| 393 | static void *table_seq_start(struct seq_file *seq, loff_t *pos) | 393 | static void *table_seq_start(struct seq_file *seq, loff_t *pos) |
| 394 | { | 394 | { |
| @@ -534,21 +534,21 @@ static void table_seq_stop(struct seq_file *seq, void *iter_ptr) | |||
| 534 | } | 534 | } |
| 535 | } | 535 | } |
| 536 | 536 | ||
| 537 | static struct seq_operations format1_seq_ops = { | 537 | static const struct seq_operations format1_seq_ops = { |
| 538 | .start = table_seq_start, | 538 | .start = table_seq_start, |
| 539 | .next = table_seq_next, | 539 | .next = table_seq_next, |
| 540 | .stop = table_seq_stop, | 540 | .stop = table_seq_stop, |
| 541 | .show = table_seq_show, | 541 | .show = table_seq_show, |
| 542 | }; | 542 | }; |
| 543 | 543 | ||
| 544 | static struct seq_operations format2_seq_ops = { | 544 | static const struct seq_operations format2_seq_ops = { |
| 545 | .start = table_seq_start, | 545 | .start = table_seq_start, |
| 546 | .next = table_seq_next, | 546 | .next = table_seq_next, |
| 547 | .stop = table_seq_stop, | 547 | .stop = table_seq_stop, |
| 548 | .show = table_seq_show, | 548 | .show = table_seq_show, |
| 549 | }; | 549 | }; |
| 550 | 550 | ||
| 551 | static struct seq_operations format3_seq_ops = { | 551 | static const struct seq_operations format3_seq_ops = { |
| 552 | .start = table_seq_start, | 552 | .start = table_seq_start, |
| 553 | .next = table_seq_next, | 553 | .next = table_seq_next, |
| 554 | .stop = table_seq_stop, | 554 | .stop = table_seq_stop, |
