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 9dab13ae6ef7..e445be2a18f9 100644 --- a/fs/inode.c +++ b/fs/inode.c | |||
@@ -399,12 +399,12 @@ void __insert_inode_hash(struct inode *inode, unsigned long hashval) | |||
399 | EXPORT_SYMBOL(__insert_inode_hash); | 399 | EXPORT_SYMBOL(__insert_inode_hash); |
400 | 400 | ||
401 | /** | 401 | /** |
402 | * remove_inode_hash - remove an inode from the hash | 402 | * __remove_inode_hash - remove an inode from the hash |
403 | * @inode: inode to unhash | 403 | * @inode: inode to unhash |
404 | * | 404 | * |
405 | * Remove an inode from the superblock. | 405 | * Remove an inode from the superblock. |
406 | */ | 406 | */ |
407 | void remove_inode_hash(struct inode *inode) | 407 | void __remove_inode_hash(struct inode *inode) |
408 | { | 408 | { |
409 | spin_lock(&inode_hash_lock); | 409 | spin_lock(&inode_hash_lock); |
410 | spin_lock(&inode->i_lock); | 410 | spin_lock(&inode->i_lock); |
@@ -412,7 +412,7 @@ void remove_inode_hash(struct inode *inode) | |||
412 | spin_unlock(&inode->i_lock); | 412 | spin_unlock(&inode->i_lock); |
413 | spin_unlock(&inode_hash_lock); | 413 | spin_unlock(&inode_hash_lock); |
414 | } | 414 | } |
415 | EXPORT_SYMBOL(remove_inode_hash); | 415 | EXPORT_SYMBOL(__remove_inode_hash); |
416 | 416 | ||
417 | void end_writeback(struct inode *inode) | 417 | void end_writeback(struct inode *inode) |
418 | { | 418 | { |