mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-10-31 18:09:19 +00:00
new helper: inode_unhashed()
note: for race-free uses you inode_lock held Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
a8dade34e3
commit
1d3382cbf0
6 changed files with 13 additions and 8 deletions
|
@ -3849,7 +3849,7 @@ again:
|
|||
p = &root->inode_tree.rb_node;
|
||||
parent = NULL;
|
||||
|
||||
if (hlist_unhashed(&inode->i_hash))
|
||||
if (inode_unhashed(inode))
|
||||
return;
|
||||
|
||||
spin_lock(&root->inode_lock);
|
||||
|
|
|
@ -962,7 +962,7 @@ void __mark_inode_dirty(struct inode *inode, int flags)
|
|||
* dirty list. Add blockdev inodes as well.
|
||||
*/
|
||||
if (!S_ISBLK(inode->i_mode)) {
|
||||
if (hlist_unhashed(&inode->i_hash))
|
||||
if (inode_unhashed(inode))
|
||||
goto out;
|
||||
}
|
||||
if (inode->i_state & I_FREEING)
|
||||
|
|
|
@ -1094,7 +1094,7 @@ int insert_inode_locked(struct inode *inode)
|
|||
__iget(old);
|
||||
spin_unlock(&inode_lock);
|
||||
wait_on_inode(old);
|
||||
if (unlikely(!hlist_unhashed(&old->i_hash))) {
|
||||
if (unlikely(!inode_unhashed(old))) {
|
||||
iput(old);
|
||||
return -EBUSY;
|
||||
}
|
||||
|
@ -1133,7 +1133,7 @@ int insert_inode_locked4(struct inode *inode, unsigned long hashval,
|
|||
__iget(old);
|
||||
spin_unlock(&inode_lock);
|
||||
wait_on_inode(old);
|
||||
if (unlikely(!hlist_unhashed(&old->i_hash))) {
|
||||
if (unlikely(!inode_unhashed(old))) {
|
||||
iput(old);
|
||||
return -EBUSY;
|
||||
}
|
||||
|
@ -1186,7 +1186,7 @@ EXPORT_SYMBOL(generic_delete_inode);
|
|||
*/
|
||||
int generic_drop_inode(struct inode *inode)
|
||||
{
|
||||
return !inode->i_nlink || hlist_unhashed(&inode->i_hash);
|
||||
return !inode->i_nlink || inode_unhashed(inode);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(generic_drop_inode);
|
||||
|
||||
|
|
|
@ -422,7 +422,7 @@ int reiserfs_commit_write(struct file *f, struct page *page,
|
|||
static void update_ctime(struct inode *inode)
|
||||
{
|
||||
struct timespec now = current_fs_time(inode->i_sb);
|
||||
if (hlist_unhashed(&inode->i_hash) || !inode->i_nlink ||
|
||||
if (inode_unhashed(inode) || !inode->i_nlink ||
|
||||
timespec_equal(&inode->i_ctime, &now))
|
||||
return;
|
||||
|
||||
|
|
|
@ -786,6 +786,11 @@ struct inode {
|
|||
void *i_private; /* fs or device private pointer */
|
||||
};
|
||||
|
||||
static inline int inode_unhashed(struct inode *inode)
|
||||
{
|
||||
return hlist_unhashed(&inode->i_hash);
|
||||
}
|
||||
|
||||
/*
|
||||
* inode->i_mutex nesting subclasses for the lock validator:
|
||||
*
|
||||
|
|
|
@ -2146,7 +2146,7 @@ static int shmem_encode_fh(struct dentry *dentry, __u32 *fh, int *len,
|
|||
if (*len < 3)
|
||||
return 255;
|
||||
|
||||
if (hlist_unhashed(&inode->i_hash)) {
|
||||
if (inode_unhashed(inode)) {
|
||||
/* Unfortunately insert_inode_hash is not idempotent,
|
||||
* so as we hash inodes here rather than at creation
|
||||
* time, we need a lock to ensure we only try
|
||||
|
@ -2154,7 +2154,7 @@ static int shmem_encode_fh(struct dentry *dentry, __u32 *fh, int *len,
|
|||
*/
|
||||
static DEFINE_SPINLOCK(lock);
|
||||
spin_lock(&lock);
|
||||
if (hlist_unhashed(&inode->i_hash))
|
||||
if (inode_unhashed(inode))
|
||||
__insert_inode_hash(inode,
|
||||
inode->i_ino + inode->i_generation);
|
||||
spin_unlock(&lock);
|
||||
|
|
Loading…
Reference in a new issue