summaryrefslogtreecommitdiffstats
path: root/drivers/oprofile/oprofile_files.c
diff options
context:
space:
mode:
authorAl Viro2013-07-19 13:54:56 +0200
committerAl Viro2013-09-04 04:52:47 +0200
commit40437c718a69562bafaf9e5c9d17b6628e2576b1 (patch)
treef428e0a5c172944a2a578853b4071a29337f14b0 /drivers/oprofile/oprofile_files.c
parentoprofile: don't bother with passing superblock to ->create_files() (diff)
downloadkernel-qcow2-linux-40437c718a69562bafaf9e5c9d17b6628e2576b1.tar.gz
kernel-qcow2-linux-40437c718a69562bafaf9e5c9d17b6628e2576b1.tar.xz
kernel-qcow2-linux-40437c718a69562bafaf9e5c9d17b6628e2576b1.zip
don't bother with passing superblock to oprofile_create_stats_files()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'drivers/oprofile/oprofile_files.c')
-rw-r--r--drivers/oprofile/oprofile_files.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/oprofile/oprofile_files.c b/drivers/oprofile/oprofile_files.c
index ffc30ee641d4..07462a9af615 100644
--- a/drivers/oprofile/oprofile_files.c
+++ b/drivers/oprofile/oprofile_files.c
@@ -195,7 +195,7 @@ void oprofile_create_files(struct dentry *root)
#ifdef CONFIG_OPROFILE_EVENT_MULTIPLEX
oprofilefs_create_file(root->d_sb, root, "time_slice", &timeout_fops);
#endif
- oprofile_create_stats_files(root->d_sb, root);
+ oprofile_create_stats_files(root);
if (oprofile_ops.create_files)
oprofile_ops.create_files(root);
}