diff options
author | Nick Piggin <npiggin@suse.de> | 2010-01-29 15:38:30 -0800 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2010-04-27 17:32:47 +0200 |
commit | 1ea5ba6f5b20144fa59a8cf7c54efe17459d1236 (patch) | |
tree | b2c272a63ca6f953397b0da6fcbd9f8bdb0a61f6 /include | |
parent | 280c10e37fa879b97c0942e024e0b02059173ea0 (diff) | |
download | lwn-1ea5ba6f5b20144fa59a8cf7c54efe17459d1236.tar.gz lwn-1ea5ba6f5b20144fa59a8cf7c54efe17459d1236.zip |
fs-inode_lock-scale-8
Make inode_hash_lock private by adding a function __remove_inode_hash
that can be used by filesystems defining their own drop_inode functions.
Signed-off-by: Nick Piggin <npiggin@suse.de>
Signed-off-by: John Stultz <johnstul@us.ibm.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/fs.h | 1 | ||||
-rw-r--r-- | include/linux/writeback.h | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index fc4222374cd7..3551528a25f6 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -2184,6 +2184,7 @@ extern int should_remove_suid(struct dentry *); extern int file_remove_suid(struct file *); extern void __insert_inode_hash(struct inode *, unsigned long hashval); +extern void __remove_inode_hash(struct inode *); extern void remove_inode_hash(struct inode *); static inline void insert_inode_hash(struct inode *inode) { __insert_inode_hash(inode, inode->i_ino); diff --git a/include/linux/writeback.h b/include/linux/writeback.h index 3e504f49753c..05479e576a77 100644 --- a/include/linux/writeback.h +++ b/include/linux/writeback.h @@ -11,7 +11,6 @@ struct backing_dev_info; extern spinlock_t sb_inode_list_lock; extern spinlock_t wb_inode_list_lock; -extern spinlock_t inode_hash_lock; extern struct list_head inode_in_use; extern struct list_head inode_unused; |