diff options
Diffstat (limited to 'fs/xfs/xfs_inode.h')
-rw-r--r-- | fs/xfs/xfs_inode.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/fs/xfs/xfs_inode.h b/fs/xfs/xfs_inode.h index 79d724615c39..ea1e24effd49 100644 --- a/fs/xfs/xfs_inode.h +++ b/fs/xfs/xfs_inode.h | |||
@@ -360,6 +360,19 @@ xfs_iflags_test(xfs_inode_t *ip, unsigned short flags) | |||
360 | spin_unlock(&ip->i_flags_lock); | 360 | spin_unlock(&ip->i_flags_lock); |
361 | return ret; | 361 | return ret; |
362 | } | 362 | } |
363 | |||
364 | static inline int | ||
365 | xfs_iflags_test_and_clear(xfs_inode_t *ip, unsigned short flags) | ||
366 | { | ||
367 | int ret; | ||
368 | |||
369 | spin_lock(&ip->i_flags_lock); | ||
370 | ret = ip->i_flags & flags; | ||
371 | if (ret) | ||
372 | ip->i_flags &= ~flags; | ||
373 | spin_unlock(&ip->i_flags_lock); | ||
374 | return ret; | ||
375 | } | ||
363 | #endif /* __KERNEL__ */ | 376 | #endif /* __KERNEL__ */ |
364 | 377 | ||
365 | 378 | ||