summaryrefslogtreecommitdiffstats
path: root/include/sys/trace_arc.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_arc.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_arc.h')
-rw-r--r--include/sys/trace_arc.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/sys/trace_arc.h b/include/sys/trace_arc.h
index b4edb5142..74a76520d 100644
--- a/include/sys/trace_arc.h
+++ b/include/sys/trace_arc.h
@@ -97,8 +97,8 @@ DECLARE_EVENT_CLASS(zfs_arc_buf_hdr_class,
);
/* END CSTYLED */
-#define DEFINE_ARC_BUF_HDR_EVENT(name) \
/* BEGIN CSTYLED */
+#define DEFINE_ARC_BUF_HDR_EVENT(name) \
DEFINE_EVENT(zfs_arc_buf_hdr_class, name, \
TP_PROTO(arc_buf_hdr_t *ab), \
TP_ARGS(ab))
@@ -142,8 +142,8 @@ DECLARE_EVENT_CLASS(zfs_l2arc_rw_class,
);
/* END CSTYLED */
-#define DEFINE_L2ARC_RW_EVENT(name) \
/* BEGIN CSTYLED */
+#define DEFINE_L2ARC_RW_EVENT(name) \
DEFINE_EVENT(zfs_l2arc_rw_class, name, \
TP_PROTO(vdev_t *vd, zio_t *zio), \
TP_ARGS(vd, zio))
@@ -169,8 +169,8 @@ DECLARE_EVENT_CLASS(zfs_l2arc_iodone_class,
);
/* END CSTYLED */
-#define DEFINE_L2ARC_IODONE_EVENT(name) \
/* BEGIN CSTYLED */
+#define DEFINE_L2ARC_IODONE_EVENT(name) \
DEFINE_EVENT(zfs_l2arc_iodone_class, name, \
TP_PROTO(zio_t *zio, l2arc_write_callback_t *cb), \
TP_ARGS(zio, cb))
@@ -283,8 +283,8 @@ DECLARE_EVENT_CLASS(zfs_arc_miss_class,
);
/* END CSTYLED */
-#define DEFINE_ARC_MISS_EVENT(name) \
/* BEGIN CSTYLED */
+#define DEFINE_ARC_MISS_EVENT(name) \
DEFINE_EVENT(zfs_arc_miss_class, name, \
TP_PROTO(arc_buf_hdr_t *hdr, \
const blkptr_t *bp, uint64_t size, const zbookmark_phys_t *zb), \
@@ -344,8 +344,8 @@ DECLARE_EVENT_CLASS(zfs_l2arc_evict_class,
);
/* END CSTYLED */
-#define DEFINE_L2ARC_EVICT_EVENT(name) \
/* BEGIN CSTYLED */
+#define DEFINE_L2ARC_EVICT_EVENT(name) \
DEFINE_EVENT(zfs_l2arc_evict_class, name, \
TP_PROTO(l2arc_dev_t *dev, \
list_t *buflist, uint64_t taddr, boolean_t all), \