summaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_linux.h
diff options
context:
space:
mode:
authorChristoph Hellwig2014-11-28 04:24:06 +0100
committerDave Chinner2014-11-28 04:24:06 +0100
commit6d3ebaae7c20128bfa6965a8d5cee0d1deea8486 (patch)
treee5f11025b5654334af070e646077b56979d75aca /fs/xfs/xfs_linux.h
parentLinux 3.18-rc2 (diff)
downloadkernel-qcow2-linux-6d3ebaae7c20128bfa6965a8d5cee0d1deea8486.tar.gz
kernel-qcow2-linux-6d3ebaae7c20128bfa6965a8d5cee0d1deea8486.tar.xz
kernel-qcow2-linux-6d3ebaae7c20128bfa6965a8d5cee0d1deea8486.zip
xfs: merge xfs_dinode.h into xfs_format.h
More consolidatation for the on-disk format defintions. Note that the XFS_IS_REALTIME_INODE moves to xfs_linux.h instead as it is not related to the on disk format, but depends on a CONFIG_ option. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Dave Chinner <dchinner@redhat.com> Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/xfs_linux.h')
-rw-r--r--fs/xfs/xfs_linux.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/fs/xfs/xfs_linux.h b/fs/xfs/xfs_linux.h
index 6a51619d8690..c31d2c2eadc4 100644
--- a/fs/xfs/xfs_linux.h
+++ b/fs/xfs/xfs_linux.h
@@ -384,4 +384,10 @@ static inline __uint64_t howmany_64(__uint64_t x, __uint32_t y)
#endif /* XFS_WARN */
#endif /* DEBUG */
+#ifdef CONFIG_XFS_RT
+#define XFS_IS_REALTIME_INODE(ip) ((ip)->i_d.di_flags & XFS_DIFLAG_REALTIME)
+#else
+#define XFS_IS_REALTIME_INODE(ip) (0)
+#endif
+
#endif /* __XFS_LINUX__ */