Commit c6f6cd06 authored by Christoph Hellwig's avatar Christoph Hellwig Committed by Alex Elder

xfs: use hlist_add_fake

XFS does not need it's inodes to actuall be hashed in the VFS inode
cache, but we require the inode to be marked hashed for the
writeback code to work.

Insted of using insert_inode_hash, which requires a second
inode_lock roundtrip after the partial merge of the inode
scalability patches in 2.6.37-rc simply use the new hlist_add_fake
helper to mark it hashed without requiring a lock or touching a
global cache line.
Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
Signed-off-by: default avatarAlex Elder <aelder@sgi.com>
parent 5d2bf8a5
...@@ -762,7 +762,8 @@ xfs_setup_inode( ...@@ -762,7 +762,8 @@ xfs_setup_inode(
inode->i_state = I_NEW; inode->i_state = I_NEW;
inode_sb_list_add(inode); inode_sb_list_add(inode);
insert_inode_hash(inode); /* make the inode look hashed for the writeback code */
hlist_add_fake(&inode->i_hash);
inode->i_mode = ip->i_d.di_mode; inode->i_mode = ip->i_d.di_mode;
inode->i_nlink = ip->i_d.di_nlink; inode->i_nlink = ip->i_d.di_nlink;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment