diff options
author | Adrian Bunk <bunk@stusta.de> | 2006-03-28 01:56:29 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-28 09:16:03 -0800 |
commit | f5b95ff010d0a4e40f877277f8f0e62fcd83b5a8 (patch) | |
tree | dd9b8f58a16fec4746fb58a0848a36916b1f86f1 /fs/autofs4 | |
parent | fa8f399a2bc36c1329672400857757e0982babf3 (diff) |
[PATCH] autofs4: proper prototype for autofs4_dentry_release()
Add a proper prototype for autofs4_dentry_release() to autofs_i.h.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/autofs4')
-rw-r--r-- | fs/autofs4/autofs_i.h | 3 | ||||
-rw-r--r-- | fs/autofs4/inode.c | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/fs/autofs4/autofs_i.h b/fs/autofs4/autofs_i.h index 617fd7b37447..c70204a61268 100644 --- a/fs/autofs4/autofs_i.h +++ b/fs/autofs4/autofs_i.h @@ -230,3 +230,6 @@ static inline int __simple_empty(struct dentry *dentry) out: return ret; } + +void autofs4_dentry_release(struct dentry *); + diff --git a/fs/autofs4/inode.c b/fs/autofs4/inode.c index 4eddee4e76fc..fde78b110ddd 100644 --- a/fs/autofs4/inode.c +++ b/fs/autofs4/inode.c @@ -292,7 +292,6 @@ static struct autofs_info *autofs4_mkroot(struct autofs_sb_info *sbi) return ino; } -void autofs4_dentry_release(struct dentry *); static struct dentry_operations autofs4_sb_dentry_operations = { .d_release = autofs4_dentry_release, }; |