Skip to content

Commit

Permalink
autofs4: autofs4_mkroot() is not different from autofs4_init_ino()
Browse files Browse the repository at this point in the history
Kill it.  Mind you, it's been an obfuscated call of autofs4_init_ino()
ever since 2.3.99pre6-4...

Acked-by: Ian Kent <[email protected]>
Signed-off-by: Al Viro <[email protected]>
  • Loading branch information
Al Viro committed Jan 18, 2011
1 parent 292c5ee commit 14a2f00
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions fs/autofs4/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -215,17 +215,6 @@ static int parse_options(char *options, int *pipefd, uid_t *uid, gid_t *gid,
return (*pipefd < 0);
}

static struct autofs_info *autofs4_mkroot(struct autofs_sb_info *sbi)
{
struct autofs_info *ino;

ino = autofs4_init_ino(NULL, sbi, S_IFDIR | 0755);
if (!ino)
return NULL;

return ino;
}

int autofs4_fill_super(struct super_block *s, void *data, int silent)
{
struct inode * root_inode;
Expand Down Expand Up @@ -269,7 +258,7 @@ int autofs4_fill_super(struct super_block *s, void *data, int silent)
/*
* Get the root inode and dentry, but defer checking for errors.
*/
ino = autofs4_mkroot(sbi);
ino = autofs4_init_ino(NULL, sbi, S_IFDIR | 0755);
if (!ino)
goto fail_free;
root_inode = autofs4_get_inode(s, ino);
Expand Down

0 comments on commit 14a2f00

Please sign in to comment.