aboutsummaryrefslogtreecommitdiffstats
path: root/include/sys/trace_acl.h
diff options
context:
space:
mode:
authorBrian Behlendorf <[email protected]>2017-01-24 08:50:15 -0800
committerGitHub <[email protected]>2017-01-24 08:50:15 -0800
commite82dbae1ee33170ed3924c5229db651caf384333 (patch)
tree1f4b00879d9300ebffae6cae1dc861e50ca13737 /include/sys/trace_acl.h
parente85d62faaea9871293c1c26675ee665ebe3733e4 (diff)
Fix build-it compilation regression
Accidentally introduced by 4ea3f86. The BEGIN CSTYLE block cannot appear half way through a continued #define. Reviewed-by: Giuseppe Di Natale <[email protected]> Reviewed-by: George Melikov <[email protected]> Signed-off-by: Brian Behlendorf <[email protected]> Closes #5643 Closes #5644
Diffstat (limited to 'include/sys/trace_acl.h')
-rw-r--r--include/sys/trace_acl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sys/trace_acl.h b/include/sys/trace_acl.h
index 80c63f743..1057e560b 100644
--- a/include/sys/trace_acl.h
+++ b/include/sys/trace_acl.h
@@ -138,8 +138,8 @@ DECLARE_EVENT_CLASS(zfs_ace_class,
);
/* END CSTYLED */
-#define DEFINE_ACE_EVENT(name) \
/* BEGIN CSTYLED */
+#define DEFINE_ACE_EVENT(name) \
DEFINE_EVENT(zfs_ace_class, name, \
TP_PROTO(znode_t *zn, zfs_ace_hdr_t *ace, uint32_t mask_matched), \
TP_ARGS(zn, ace, mask_matched))