diff options
Diffstat (limited to 'fs/inode.c')
| -rw-r--r-- | fs/inode.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/inode.c b/fs/inode.c index 501fc5daf6f..02c0fa5e16a 100644 --- a/fs/inode.c +++ b/fs/inode.c @@ -486,7 +486,7 @@ void __remove_inode_hash(struct inode *inode)  }  EXPORT_SYMBOL(__remove_inode_hash); -void end_writeback(struct inode *inode) +void clear_inode(struct inode *inode)  {  	might_sleep();  	/* @@ -503,7 +503,7 @@ void end_writeback(struct inode *inode)  	/* don't need i_lock here, no concurrent mods to i_state */  	inode->i_state = I_FREEING | I_CLEAR;  } -EXPORT_SYMBOL(end_writeback); +EXPORT_SYMBOL(clear_inode);  /*   * Free the inode passed in, removing it from the lists it is still connected @@ -537,7 +537,7 @@ static void evict(struct inode *inode)  	} else {  		if (inode->i_data.nrpages)  			truncate_inode_pages(&inode->i_data, 0); -		end_writeback(inode); +		clear_inode(inode);  	}  	if (S_ISBLK(inode->i_mode) && inode->i_bdev)  		bd_forget(inode);  |