diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2011-01-16 17:43:52 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2011-01-18 01:21:28 -0500 |
commit | 726a5e0688fd344110d8f2979d87f243a4ba1a48 (patch) | |
tree | c554b40ff5619dfd491b4890e89c8ee9c3131efd /fs/autofs4/root.c | |
parent | 0bf71d4d005176f6b6587ba64a377f9798213f21 (diff) |
autofs4: autofs4_get_inode() doesn't need autofs_info * argument anymore
Acked-by: Ian Kent <raven@themaw.net>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/autofs4/root.c')
-rw-r--r-- | fs/autofs4/root.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/autofs4/root.c b/fs/autofs4/root.c index 1ad3c6ca9b03..83e5379c5ade 100644 --- a/fs/autofs4/root.c +++ b/fs/autofs4/root.c | |||
@@ -554,7 +554,7 @@ static int autofs4_dir_symlink(struct inode *dir, | |||
554 | 554 | ||
555 | strcpy(cp, symname); | 555 | strcpy(cp, symname); |
556 | 556 | ||
557 | inode = autofs4_get_inode(dir->i_sb, ino, S_IFLNK | 0555); | 557 | inode = autofs4_get_inode(dir->i_sb, S_IFLNK | 0555); |
558 | if (!inode) { | 558 | if (!inode) { |
559 | kfree(cp); | 559 | kfree(cp); |
560 | if (!dentry->d_fsdata) | 560 | if (!dentry->d_fsdata) |
@@ -740,7 +740,7 @@ static int autofs4_dir_mkdir(struct inode *dir, struct dentry *dentry, int mode) | |||
740 | 740 | ||
741 | autofs4_del_active(dentry); | 741 | autofs4_del_active(dentry); |
742 | 742 | ||
743 | inode = autofs4_get_inode(dir->i_sb, ino, S_IFDIR | 0555); | 743 | inode = autofs4_get_inode(dir->i_sb, S_IFDIR | 0555); |
744 | if (!inode) { | 744 | if (!inode) { |
745 | if (!dentry->d_fsdata) | 745 | if (!dentry->d_fsdata) |
746 | kfree(ino); | 746 | kfree(ino); |