diff options
author | Al Viro | 2013-07-19 13:58:27 +0200 |
---|---|---|
committer | Al Viro | 2013-09-04 04:52:47 +0200 |
commit | ecde28237e10de3750a97579f42bc2ec65b8a0e1 (patch) | |
tree | fb893491060703f58c982ed73a6c5c4886188bb4 /arch/powerpc/oprofile | |
parent | don't bother with passing superblock to oprofile_create_stats_files() (diff) | |
download | kernel-qcow2-linux-ecde28237e10de3750a97579f42bc2ec65b8a0e1.tar.gz kernel-qcow2-linux-ecde28237e10de3750a97579f42bc2ec65b8a0e1.tar.xz kernel-qcow2-linux-ecde28237e10de3750a97579f42bc2ec65b8a0e1.zip |
oprofilefs_mkdir() doesn't need superblock argument
it's always equal to ->d_sb of the second argument (parent dentry),
due to either being literally that, or ->d_sb of parent's parent.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/powerpc/oprofile')
-rw-r--r-- | arch/powerpc/oprofile/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/oprofile/common.c b/arch/powerpc/oprofile/common.c index addc62317f45..60a286b367fc 100644 --- a/arch/powerpc/oprofile/common.c +++ b/arch/powerpc/oprofile/common.c @@ -160,7 +160,7 @@ static int op_powerpc_create_files(struct dentry *root) char buf[4]; snprintf(buf, sizeof buf, "%d", i); - dir = oprofilefs_mkdir(root->d_sb, root, buf); + dir = oprofilefs_mkdir(root, buf); oprofilefs_create_ulong(root->d_sb, dir, "enabled", &ctr[i].enabled); oprofilefs_create_ulong(root->d_sb, dir, "event", &ctr[i].event); |