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/inode.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/inode.c')
-rw-r--r-- | fs/autofs4/inode.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/fs/autofs4/inode.c b/fs/autofs4/inode.c index ac1a99ce820b..b3f9477c9745 100644 --- a/fs/autofs4/inode.c +++ b/fs/autofs4/inode.c | |||
@@ -259,7 +259,7 @@ int autofs4_fill_super(struct super_block *s, void *data, int silent) | |||
259 | ino = autofs4_init_ino(NULL, sbi); | 259 | ino = autofs4_init_ino(NULL, sbi); |
260 | if (!ino) | 260 | if (!ino) |
261 | goto fail_free; | 261 | goto fail_free; |
262 | root_inode = autofs4_get_inode(s, ino, S_IFDIR | 0755); | 262 | root_inode = autofs4_get_inode(s, S_IFDIR | 0755); |
263 | if (!root_inode) | 263 | if (!root_inode) |
264 | goto fail_ino; | 264 | goto fail_ino; |
265 | 265 | ||
@@ -342,9 +342,7 @@ fail_unlock: | |||
342 | return -EINVAL; | 342 | return -EINVAL; |
343 | } | 343 | } |
344 | 344 | ||
345 | struct inode *autofs4_get_inode(struct super_block *sb, | 345 | struct inode *autofs4_get_inode(struct super_block *sb, mode_t mode) |
346 | struct autofs_info *inf, | ||
347 | mode_t mode) | ||
348 | { | 346 | { |
349 | struct inode *inode = new_inode(sb); | 347 | struct inode *inode = new_inode(sb); |
350 | 348 | ||