diff options
-rw-r--r-- | fs/inode.c | 2 | ||||
-rw-r--r-- | include/linux/fs.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/fs/inode.c b/fs/inode.c index 86464332e590..3368abd64bb5 100644 --- a/fs/inode.c +++ b/fs/inode.c | |||
@@ -235,7 +235,7 @@ void __destroy_inode(struct inode *inode) | |||
235 | } | 235 | } |
236 | EXPORT_SYMBOL(__destroy_inode); | 236 | EXPORT_SYMBOL(__destroy_inode); |
237 | 237 | ||
238 | void destroy_inode(struct inode *inode) | 238 | static void destroy_inode(struct inode *inode) |
239 | { | 239 | { |
240 | __destroy_inode(inode); | 240 | __destroy_inode(inode); |
241 | if (inode->i_sb->s_op->destroy_inode) | 241 | if (inode->i_sb->s_op->destroy_inode) |
diff --git a/include/linux/fs.h b/include/linux/fs.h index 0b03f490572f..0a5d83633884 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
@@ -2187,7 +2187,6 @@ extern void unlock_new_inode(struct inode *); | |||
2187 | extern void __iget(struct inode * inode); | 2187 | extern void __iget(struct inode * inode); |
2188 | extern void iget_failed(struct inode *); | 2188 | extern void iget_failed(struct inode *); |
2189 | extern void end_writeback(struct inode *); | 2189 | extern void end_writeback(struct inode *); |
2190 | extern void destroy_inode(struct inode *); | ||
2191 | extern void __destroy_inode(struct inode *); | 2190 | extern void __destroy_inode(struct inode *); |
2192 | extern struct inode *new_inode(struct super_block *); | 2191 | extern struct inode *new_inode(struct super_block *); |
2193 | extern int should_remove_suid(struct dentry *); | 2192 | extern int should_remove_suid(struct dentry *); |