diff options
author | Ingo Molnar <mingo@elte.hu> | 2009-04-06 03:02:57 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-04-06 03:02:57 -0400 |
commit | f541ae326fa120fa5c57433e4d9a133df212ce41 (patch) | |
tree | bdbd94ec72cfc601118051cb35e8617d55510177 /fs/reiserfs/procfs.c | |
parent | e255357764f92afcafafbd4879b222b8c752065a (diff) | |
parent | 0221c81b1b8eb0cbb6b30a0ced52ead32d2b4e4c (diff) |
Merge branch 'linus' into perfcounters/core-v2
Merge reason: we have gathered quite a few conflicts, need to merge upstream
Conflicts:
arch/powerpc/kernel/Makefile
arch/x86/ia32/ia32entry.S
arch/x86/include/asm/hardirq.h
arch/x86/include/asm/unistd_32.h
arch/x86/include/asm/unistd_64.h
arch/x86/kernel/cpu/common.c
arch/x86/kernel/irq.c
arch/x86/kernel/syscall_table_32.S
arch/x86/mm/iomap_32.c
include/linux/sched.h
kernel/Makefile
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'fs/reiserfs/procfs.c')
-rw-r--r-- | fs/reiserfs/procfs.c | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/fs/reiserfs/procfs.c b/fs/reiserfs/procfs.c index 37173fa07d15..9229e5514a4e 100644 --- a/fs/reiserfs/procfs.c +++ b/fs/reiserfs/procfs.c | |||
@@ -321,7 +321,7 @@ static int show_journal(struct seq_file *m, struct super_block *sb) | |||
321 | /* incore fields */ | 321 | /* incore fields */ |
322 | "j_1st_reserved_block: \t%i\n" | 322 | "j_1st_reserved_block: \t%i\n" |
323 | "j_state: \t%li\n" | 323 | "j_state: \t%li\n" |
324 | "j_trans_id: \t%lu\n" | 324 | "j_trans_id: \t%u\n" |
325 | "j_mount_id: \t%lu\n" | 325 | "j_mount_id: \t%lu\n" |
326 | "j_start: \t%lu\n" | 326 | "j_start: \t%lu\n" |
327 | "j_len: \t%lu\n" | 327 | "j_len: \t%lu\n" |
@@ -329,7 +329,7 @@ static int show_journal(struct seq_file *m, struct super_block *sb) | |||
329 | "j_wcount: \t%i\n" | 329 | "j_wcount: \t%i\n" |
330 | "j_bcount: \t%lu\n" | 330 | "j_bcount: \t%lu\n" |
331 | "j_first_unflushed_offset: \t%lu\n" | 331 | "j_first_unflushed_offset: \t%lu\n" |
332 | "j_last_flush_trans_id: \t%lu\n" | 332 | "j_last_flush_trans_id: \t%u\n" |
333 | "j_trans_start_time: \t%li\n" | 333 | "j_trans_start_time: \t%li\n" |
334 | "j_list_bitmap_index: \t%i\n" | 334 | "j_list_bitmap_index: \t%i\n" |
335 | "j_must_wait: \t%i\n" | 335 | "j_must_wait: \t%i\n" |
@@ -492,7 +492,6 @@ int reiserfs_proc_info_init(struct super_block *sb) | |||
492 | spin_lock_init(&__PINFO(sb).lock); | 492 | spin_lock_init(&__PINFO(sb).lock); |
493 | REISERFS_SB(sb)->procdir = proc_mkdir(b, proc_info_root); | 493 | REISERFS_SB(sb)->procdir = proc_mkdir(b, proc_info_root); |
494 | if (REISERFS_SB(sb)->procdir) { | 494 | if (REISERFS_SB(sb)->procdir) { |
495 | REISERFS_SB(sb)->procdir->owner = THIS_MODULE; | ||
496 | REISERFS_SB(sb)->procdir->data = sb; | 495 | REISERFS_SB(sb)->procdir->data = sb; |
497 | add_file(sb, "version", show_version); | 496 | add_file(sb, "version", show_version); |
498 | add_file(sb, "super", show_super); | 497 | add_file(sb, "super", show_super); |
@@ -503,7 +502,7 @@ int reiserfs_proc_info_init(struct super_block *sb) | |||
503 | add_file(sb, "journal", show_journal); | 502 | add_file(sb, "journal", show_journal); |
504 | return 0; | 503 | return 0; |
505 | } | 504 | } |
506 | reiserfs_warning(sb, "reiserfs: cannot create /proc/%s/%s", | 505 | reiserfs_warning(sb, "cannot create /proc/%s/%s", |
507 | proc_info_root_name, b); | 506 | proc_info_root_name, b); |
508 | return 1; | 507 | return 1; |
509 | } | 508 | } |
@@ -556,11 +555,8 @@ int reiserfs_proc_info_global_init(void) | |||
556 | { | 555 | { |
557 | if (proc_info_root == NULL) { | 556 | if (proc_info_root == NULL) { |
558 | proc_info_root = proc_mkdir(proc_info_root_name, NULL); | 557 | proc_info_root = proc_mkdir(proc_info_root_name, NULL); |
559 | if (proc_info_root) { | 558 | if (!proc_info_root) { |
560 | proc_info_root->owner = THIS_MODULE; | 559 | reiserfs_warning(NULL, "cannot create /proc/%s", |
561 | } else { | ||
562 | reiserfs_warning(NULL, | ||
563 | "reiserfs: cannot create /proc/%s", | ||
564 | proc_info_root_name); | 560 | proc_info_root_name); |
565 | return 1; | 561 | return 1; |
566 | } | 562 | } |
@@ -634,7 +630,7 @@ int reiserfs_global_version_in_proc(char *buffer, char **start, | |||
634 | * | 630 | * |
635 | */ | 631 | */ |
636 | 632 | ||
637 | /* | 633 | /* |
638 | * Make Linus happy. | 634 | * Make Linus happy. |
639 | * Local variables: | 635 | * Local variables: |
640 | * c-indentation-style: "K&R" | 636 | * c-indentation-style: "K&R" |