aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_mount.h
diff options
context:
space:
mode:
Diffstat (limited to 'fs/xfs/xfs_mount.h')
-rw-r--r--fs/xfs/xfs_mount.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/xfs/xfs_mount.h b/fs/xfs/xfs_mount.h
index 9d2ffbdc37a9..29cfcf0c11be 100644
--- a/fs/xfs/xfs_mount.h
+++ b/fs/xfs/xfs_mount.h
@@ -280,9 +280,11 @@ typedef struct xfs_icsb_cnts {
280 uint64_t icsb_fdblocks; 280 uint64_t icsb_fdblocks;
281 uint64_t icsb_ifree; 281 uint64_t icsb_ifree;
282 uint64_t icsb_icount; 282 uint64_t icsb_icount;
283 spinlock_t icsb_lock; 283 unsigned long icsb_flags;
284} xfs_icsb_cnts_t; 284} xfs_icsb_cnts_t;
285 285
286#define XFS_ICSB_FLAG_LOCK (1 << 0) /* counter lock bit */
287
286#define XFS_ICSB_SB_LOCKED (1 << 0) /* sb already locked */ 288#define XFS_ICSB_SB_LOCKED (1 << 0) /* sb already locked */
287#define XFS_ICSB_LAZY_COUNT (1 << 1) /* accuracy not needed */ 289#define XFS_ICSB_LAZY_COUNT (1 << 1) /* accuracy not needed */
288 290