[PATCH 04/16 v3] fold debugfs_link() into caller

From: Steven Rostedt
Date: Mon Jan 26 2015 - 10:10:20 EST


From: Al Viro <viro@xxxxxxxxxxxxxxxxxx>

Signed-off-by: Al Viro <viro@xxxxxxxxxxxxxxxxxx>
---
fs/debugfs/inode.c | 11 ++---------
1 file changed, 2 insertions(+), 9 deletions(-)

diff --git a/fs/debugfs/inode.c b/fs/debugfs/inode.c
index 18564b08884c..c69e00d69ff1 100644
--- a/fs/debugfs/inode.c
+++ b/fs/debugfs/inode.c
@@ -103,14 +103,6 @@ static int debugfs_mkdir(struct dentry *dentry, umode_t mode)
return res;
}

-static int debugfs_link(struct dentry *dentry, umode_t mode,
- void *data)
-{
- struct inode *dir = dentry->d_parent->d_inode;
- mode = (mode & S_IALLUGO) | S_IFLNK;
- return debugfs_mknod(dir, dentry, mode, 0, data, NULL);
-}
-
static int debugfs_create(struct dentry *dentry, umode_t mode,
void *data, const struct file_operations *fops)
{
@@ -466,7 +458,8 @@ struct dentry *debugfs_create_symlink(const char *name, struct dentry *parent,
return NULL;
}

- error = debugfs_link(dentry, S_IFLNK | S_IRWXUGO, link);
+ error = debugfs_mknod(dentry->d_parent->d_inode, dentry,
+ S_IFLNK | S_IRWXUGO, 0, link, NULL);
if (error)
kfree(link);

--
2.1.4


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/