aboutsummaryrefslogtreecommitdiffstats
path: root/include/sys/trace_zil.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_zil.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_zil.h')
-rw-r--r--include/sys/trace_zil.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sys/trace_zil.h b/include/sys/trace_zil.h
index fbceee643..5b43480ae 100644
--- a/include/sys/trace_zil.h
+++ b/include/sys/trace_zil.h
@@ -113,8 +113,8 @@ DECLARE_EVENT_CLASS(zfs_zil_class,
);
/* END CSTYLED */
-#define DEFINE_ZIL_EVENT(name) \
/* BEGIN CSTYLED */
+#define DEFINE_ZIL_EVENT(name) \
DEFINE_EVENT(zfs_zil_class, name, \
TP_PROTO(zilog_t *zilog), \
TP_ARGS(zilog))