mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-20 05:31:15 +00:00
fs: mark destroy_inode static
Hugetlbfs used to need it, but after the destroy_inode and evict_inode changes it's not required anymore. Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
c37650161a
commit
56b0dacfa2
2 changed files with 1 additions and 2 deletions
|
@ -235,7 +235,7 @@ void __destroy_inode(struct inode *inode)
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(__destroy_inode);
|
EXPORT_SYMBOL(__destroy_inode);
|
||||||
|
|
||||||
void destroy_inode(struct inode *inode)
|
static void destroy_inode(struct inode *inode)
|
||||||
{
|
{
|
||||||
__destroy_inode(inode);
|
__destroy_inode(inode);
|
||||||
if (inode->i_sb->s_op->destroy_inode)
|
if (inode->i_sb->s_op->destroy_inode)
|
||||||
|
|
|
@ -2187,7 +2187,6 @@ extern void unlock_new_inode(struct inode *);
|
||||||
extern void __iget(struct inode * inode);
|
extern void __iget(struct inode * inode);
|
||||||
extern void iget_failed(struct inode *);
|
extern void iget_failed(struct inode *);
|
||||||
extern void end_writeback(struct inode *);
|
extern void end_writeback(struct inode *);
|
||||||
extern void destroy_inode(struct inode *);
|
|
||||||
extern void __destroy_inode(struct inode *);
|
extern void __destroy_inode(struct inode *);
|
||||||
extern struct inode *new_inode(struct super_block *);
|
extern struct inode *new_inode(struct super_block *);
|
||||||
extern int should_remove_suid(struct dentry *);
|
extern int should_remove_suid(struct dentry *);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue