diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2013-07-19 07:58:27 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-09-03 22:52:47 -0400 |
commit | ecde28237e10de3750a97579f42bc2ec65b8a0e1 (patch) | |
tree | fb893491060703f58c982ed73a6c5c4886188bb4 /arch/alpha/oprofile | |
parent | 40437c718a69562bafaf9e5c9d17b6628e2576b1 (diff) |
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/alpha/oprofile')
-rw-r--r-- | arch/alpha/oprofile/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/alpha/oprofile/common.c b/arch/alpha/oprofile/common.c index d79bf68caee2..a44608b697ac 100644 --- a/arch/alpha/oprofile/common.c +++ b/arch/alpha/oprofile/common.c | |||
@@ -115,7 +115,7 @@ op_axp_create_files(struct dentry *root) | |||
115 | char buf[4]; | 115 | char buf[4]; |
116 | 116 | ||
117 | snprintf(buf, sizeof buf, "%d", i); | 117 | snprintf(buf, sizeof buf, "%d", i); |
118 | dir = oprofilefs_mkdir(root->d_sb, root, buf); | 118 | dir = oprofilefs_mkdir(root, buf); |
119 | 119 | ||
120 | oprofilefs_create_ulong(root->d_sb, dir, "enabled", &ctr[i].enabled); | 120 | oprofilefs_create_ulong(root->d_sb, dir, "enabled", &ctr[i].enabled); |
121 | oprofilefs_create_ulong(root->d_sb, dir, "event", &ctr[i].event); | 121 | oprofilefs_create_ulong(root->d_sb, dir, "event", &ctr[i].event); |