aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_dmapi.h
diff options
context:
space:
mode:
authorEric Sandeen <sandeen@sandeen.net>2007-08-23 16:19:57 +1000
committerTim Shimmin <tes@chook.melbourne.sgi.com>2007-10-15 16:45:55 +1000
commit948c6d4fd894d9c7f9ad764cedbe443aa866def2 (patch)
tree1fc863026835aa07cd3eba50345a9a8619cb483e /fs/xfs/xfs_dmapi.h
parent[XFS] remove unessecary vfs argument to DM_EVENT_ENABLED (diff)
downloadlinux-dev-948c6d4fd894d9c7f9ad764cedbe443aa866def2.tar.xz
linux-dev-948c6d4fd894d9c7f9ad764cedbe443aa866def2.zip
[XFS] optimize dmapi event tests w/o dmapi config
SGI-PV: 969372 SGI-Modid: xfs-linux-melb:xfs-kern:29444a Signed-off-by: Eric Sandeen <sandeen@sandeen.net> Signed-off-by: Vlad Apostolov <vapo@sgi.com> Signed-off-by: Tim Shimmin <tes@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_dmapi.h')
-rw-r--r--fs/xfs/xfs_dmapi.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/xfs/xfs_dmapi.h b/fs/xfs/xfs_dmapi.h
index 988cf446d9e7..98b4d6325a20 100644
--- a/fs/xfs/xfs_dmapi.h
+++ b/fs/xfs/xfs_dmapi.h
@@ -67,11 +67,15 @@ typedef enum {
#define HAVE_DM_RIGHT_T
/* Defines for determining if an event message should be sent. */
+#ifdef HAVE_DMAPI
#define DM_EVENT_ENABLED(ip, event) ( \
unlikely (XFS_MTOVFS((ip)->i_mount)->vfs_flag & VFS_DMI) && \
( ((ip)->i_d.di_dmevmask & (1 << event)) || \
((ip)->i_mount->m_dmevmask & (1 << event)) ) \
)
+#else
+#define DM_EVENT_ENABLED(ip, event) (0)
+#endif
#define DM_XFS_VALID_FS_EVENTS ( \
(1 << DM_EVENT_PREUNMOUNT) | \