aboutsummaryrefslogtreecommitdiffstats
path: root/fs/autofs4/inode.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/autofs4/inode.c')
-rw-r--r--fs/autofs4/inode.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/fs/autofs4/inode.c b/fs/autofs4/inode.c
index 06858d95512..d8dc002e9cc 100644
--- a/fs/autofs4/inode.c
+++ b/fs/autofs4/inode.c
@@ -247,12 +247,9 @@ int autofs4_fill_super(struct super_block *s, void *data, int silent)
247 if (!ino) 247 if (!ino)
248 goto fail_free; 248 goto fail_free;
249 root_inode = autofs4_get_inode(s, S_IFDIR | 0755); 249 root_inode = autofs4_get_inode(s, S_IFDIR | 0755);
250 if (!root_inode) 250 root = d_make_root(root_inode);
251 goto fail_ino;
252
253 root = d_alloc_root(root_inode);
254 if (!root) 251 if (!root)
255 goto fail_iput; 252 goto fail_ino;
256 pipe = NULL; 253 pipe = NULL;
257 254
258 root->d_fsdata = ino; 255 root->d_fsdata = ino;
@@ -317,9 +314,6 @@ fail_fput:
317fail_dput: 314fail_dput:
318 dput(root); 315 dput(root);
319 goto fail_free; 316 goto fail_free;
320fail_iput:
321 printk("autofs: get root dentry failed\n");
322 iput(root_inode);
323fail_ino: 317fail_ino:
324 kfree(ino); 318 kfree(ino);
325fail_free: 319fail_free: