diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2010-10-23 15:19:20 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2010-10-25 21:24:15 -0400 |
commit | 1d3382cbf02986e4833849f528d451367ea0b4cb (patch) | |
tree | b754f9903c0f77ce40dcff18030b49d0ce213eab /include/linux/fs.h | |
parent | a8dade34e3df581bc36ca2afe6e27055e178801c (diff) |
new helper: inode_unhashed()
note: for race-free uses you inode_lock held
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include/linux/fs.h')
-rw-r--r-- | include/linux/fs.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index c3f6daf749cc..78043da85e1f 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
@@ -786,6 +786,11 @@ struct inode { | |||
786 | void *i_private; /* fs or device private pointer */ | 786 | void *i_private; /* fs or device private pointer */ |
787 | }; | 787 | }; |
788 | 788 | ||
789 | static inline int inode_unhashed(struct inode *inode) | ||
790 | { | ||
791 | return hlist_unhashed(&inode->i_hash); | ||
792 | } | ||
793 | |||
789 | /* | 794 | /* |
790 | * inode->i_mutex nesting subclasses for the lock validator: | 795 | * inode->i_mutex nesting subclasses for the lock validator: |
791 | * | 796 | * |