Skip to content

Commit

Permalink
fold debugfs_mknod() into callers
Browse files Browse the repository at this point in the history
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
  • Loading branch information
Al Viro committed Jan 25, 2015
1 parent 3473cde commit 680b302
Showing 1 changed file with 31 additions and 37 deletions.
68 changes: 31 additions & 37 deletions fs/debugfs/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -69,21 +69,6 @@ static struct inode *debugfs_get_inode(struct super_block *sb, umode_t mode, dev
return inode;
}

/* SMP-safe */
static int debugfs_mknod(struct dentry *dentry,
umode_t mode, void *data,
const struct file_operations *fops)
{
struct inode *inode;

inode = debugfs_get_inode(dentry->d_sb, mode, 0, data, fops);
if (unlikely(!inode))
return -EPERM;
d_instantiate(dentry, inode);
dget(dentry);
return 0;
}

static inline int debugfs_positive(struct dentry *dentry)
{
return dentry->d_inode && !d_unhashed(dentry);
Expand Down Expand Up @@ -339,7 +324,7 @@ struct dentry *debugfs_create_file(const char *name, umode_t mode,
const struct file_operations *fops)
{
struct dentry *dentry;
int error;
struct inode *inode;

if (!(mode & S_IFMT))
mode |= S_IFREG;
Expand All @@ -349,10 +334,14 @@ struct dentry *debugfs_create_file(const char *name, umode_t mode,
if (IS_ERR(dentry))
return NULL;

error = debugfs_mknod(dentry, mode, data, fops);
if (!error)
fsnotify_create(dentry->d_parent->d_inode, dentry);
return end_creating(dentry, error);
inode = debugfs_get_inode(dentry->d_sb, mode, 0, data, fops);
if (unlikely(!inode))
return end_creating(dentry, -ENOMEM);

d_instantiate(dentry, inode);
dget(dentry);
fsnotify_create(dentry->d_parent->d_inode, dentry);
return end_creating(dentry, 0);
}
EXPORT_SYMBOL_GPL(debugfs_create_file);

Expand All @@ -377,18 +366,22 @@ EXPORT_SYMBOL_GPL(debugfs_create_file);
struct dentry *debugfs_create_dir(const char *name, struct dentry *parent)
{
struct dentry *dentry = start_creating(name, parent);
int error;
struct inode *inode;

if (IS_ERR(dentry))
return NULL;

error = debugfs_mknod(dentry, S_IFDIR | S_IRWXU | S_IRUGO | S_IXUGO,
NULL, NULL);
if (!error) {
inc_nlink(dentry->d_parent->d_inode);
fsnotify_mkdir(dentry->d_parent->d_inode, dentry);
}
return end_creating(dentry, error);
inode = debugfs_get_inode(dentry->d_sb,
S_IFDIR | S_IRWXU | S_IRUGO | S_IXUGO,
0, NULL, NULL);
if (unlikely(!inode))
return end_creating(dentry, -ENOMEM);

d_instantiate(dentry, inode);
dget(dentry);
inc_nlink(dentry->d_parent->d_inode);
fsnotify_mkdir(dentry->d_parent->d_inode, dentry);
return end_creating(dentry, 0);
}
EXPORT_SYMBOL_GPL(debugfs_create_dir);

Expand Down Expand Up @@ -419,25 +412,26 @@ struct dentry *debugfs_create_symlink(const char *name, struct dentry *parent,
const char *target)
{
struct dentry *dentry;
char *link;
int error;

link = kstrdup(target, GFP_KERNEL);
struct inode *inode;
char *link = kstrdup(target, GFP_KERNEL);
if (!link)
return NULL;

dentry = start_creating(name, parent);

if (IS_ERR(dentry)) {
kfree(link);
return NULL;
}

error = debugfs_mknod(dentry, S_IFLNK | S_IRWXUGO, link, NULL);
if (error)
inode = debugfs_get_inode(dentry->d_sb, S_IFLNK | S_IRWXUGO, 0,
link, NULL);
if (unlikely(!inode)) {
kfree(link);

return end_creating(dentry, error);
return end_creating(dentry, -ENOMEM);
}
d_instantiate(dentry, inode);
dget(dentry);
return end_creating(dentry, 0);
}
EXPORT_SYMBOL_GPL(debugfs_create_symlink);

Expand Down

0 comments on commit 680b302

Please sign in to comment.