diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2013-07-19 13:47:29 +0200 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-09-04 04:52:46 +0200 |
commit | a9e599e558da15e092cd55a743d57d83daaac0b2 (patch) | |
tree | 023974b3df0fe329ae1ae43cb64e1ad8f254ea6d /drivers/oprofile/oprofilefs.c | |
parent | coh901318: don't open-code simple_read_from_buffer() (diff) | |
download | linux-a9e599e558da15e092cd55a743d57d83daaac0b2.tar.xz linux-a9e599e558da15e092cd55a743d57d83daaac0b2.zip |
don't bother passing sb to oprofile_create_files()
it's always root->d_sb
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to '')
-rw-r--r-- | drivers/oprofile/oprofilefs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/oprofile/oprofilefs.c b/drivers/oprofile/oprofilefs.c index 7c12d9c2b230..2e2dd5ca7211 100644 --- a/drivers/oprofile/oprofilefs.c +++ b/drivers/oprofile/oprofilefs.c @@ -256,7 +256,7 @@ static int oprofilefs_fill_super(struct super_block *sb, void *data, int silent) if (!sb->s_root) return -ENOMEM; - oprofile_create_files(sb, sb->s_root); + oprofile_create_files(sb->s_root); // FIXME: verify kill_litter_super removes our dentries return 0; |