diff options
author | David Howells <dhowells@redhat.com> | 2013-04-11 21:48:30 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-05-01 17:29:41 -0400 |
commit | 270b5ac2151707c25d3327722c5badfbd95945bc (patch) | |
tree | 27e07d1c8f531f8a817071bdb7f8c2ae5282886c /fs/reiserfs/procfs.c | |
parent | 34db8aaf0f95ffac407d39da22972b38da631db4 (diff) |
proc: Add proc_mkdir_data()
Add proc_mkdir_data() to allow procfs directories to be created that are
annotated at the time of creation with private data rather than doing this
post-creation. This means no access is then required to the proc_dir_entry
struct to set this.
Signed-off-by: David Howells <dhowells@redhat.com>
Acked-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
cc: Neela Syam Kolli <megaraidlinux@lsi.com>
cc: Jerry Chuang <jerry-chuang@realtek.com>
cc: linux-scsi@vger.kernel.org
cc: devel@driverdev.osuosl.org
cc: linux-wireless@vger.kernel.org
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/reiserfs/procfs.c')
-rw-r--r-- | fs/reiserfs/procfs.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/reiserfs/procfs.c b/fs/reiserfs/procfs.c index 274adea363ff..07c2162ef556 100644 --- a/fs/reiserfs/procfs.c +++ b/fs/reiserfs/procfs.c | |||
@@ -479,9 +479,8 @@ int reiserfs_proc_info_init(struct super_block *sb) | |||
479 | *s = '!'; | 479 | *s = '!'; |
480 | 480 | ||
481 | spin_lock_init(&__PINFO(sb).lock); | 481 | spin_lock_init(&__PINFO(sb).lock); |
482 | REISERFS_SB(sb)->procdir = proc_mkdir(b, proc_info_root); | 482 | REISERFS_SB(sb)->procdir = proc_mkdir_data(b, 0, proc_info_root, sb); |
483 | if (REISERFS_SB(sb)->procdir) { | 483 | if (REISERFS_SB(sb)->procdir) { |
484 | REISERFS_SB(sb)->procdir->data = sb; | ||
485 | add_file(sb, "version", show_version); | 484 | add_file(sb, "version", show_version); |
486 | add_file(sb, "super", show_super); | 485 | add_file(sb, "super", show_super); |
487 | add_file(sb, "per-level", show_per_level); | 486 | add_file(sb, "per-level", show_per_level); |