summaryrefslogtreecommitdiffstats
path: root/include
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
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')
-rw-r--r--include/sys/trace_acl.h2
-rw-r--r--include/sys/trace_arc.h10
-rw-r--r--include/sys/trace_dbgmsg.h8
-rw-r--r--include/sys/trace_dbuf.h4
-rw-r--r--include/sys/trace_dmu.h2
-rw-r--r--include/sys/trace_dnode.h2
-rw-r--r--include/sys/trace_multilist.h2
-rw-r--r--include/sys/trace_txg.h2
-rw-r--r--include/sys/trace_zil.h2
9 files changed, 16 insertions, 18 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))
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), \
diff --git a/include/sys/trace_dbgmsg.h b/include/sys/trace_dbgmsg.h
index 27abe703f..08d96c59c 100644
--- a/include/sys/trace_dbgmsg.h
+++ b/include/sys/trace_dbgmsg.h
@@ -68,8 +68,8 @@ DECLARE_EVENT_CLASS(zfs_dprintf_class,
);
/* END CSTYLED */
-#define DEFINE_DPRINTF_EVENT(name) \
/* BEGIN CSTYLED */
+#define DEFINE_DPRINTF_EVENT(name) \
DEFINE_EVENT(zfs_dprintf_class, name, \
TP_PROTO(const char *file, const char *function, int line, \
const char *msg), \
@@ -109,22 +109,20 @@ DECLARE_EVENT_CLASS(zfs_set_error_class,
);
/* END CSTYLED */
+/* BEGIN CSTYLED */
#ifdef TP_CONDITION
#define DEFINE_SET_ERROR_EVENT(name) \
-/* BEGIN CSTYLED */
DEFINE_EVENT_CONDITION(zfs_set_error_class, name, \
TP_PROTO(const char *file, const char *function, int line, \
uintptr_t error), \
TP_ARGS(file, function, line, error), \
TP_CONDITION(error))
-/* END CSTYLED */
#else
#define DEFINE_SET_ERROR_EVENT(name) \
-/* BEGIN CSTYLED */
DEFINE_EVENT(zfs_set_error_class, name, \
TP_PROTO(const char *file, const char *function, int line, \
uintptr_t error), \
TP_ARGS(file, function, line, error))
-/* END CSTYLED */
#endif
+/* END CSTYLED */
DEFINE_SET_ERROR_EVENT(zfs_set__error);
diff --git a/include/sys/trace_dbuf.h b/include/sys/trace_dbuf.h
index 4c5e51ebe..edaa77fa6 100644
--- a/include/sys/trace_dbuf.h
+++ b/include/sys/trace_dbuf.h
@@ -88,8 +88,8 @@ DECLARE_EVENT_CLASS(zfs_dbuf_class,
);
/* END CSTYLED */
-#define DEFINE_DBUF_EVENT(name) \
/* BEGIN CSTYLED */
+#define DEFINE_DBUF_EVENT(name) \
DEFINE_EVENT(zfs_dbuf_class, name, \
TP_PROTO(dmu_buf_impl_t *db, zio_t *zio), \
TP_ARGS(db, zio))
@@ -106,8 +106,8 @@ DECLARE_EVENT_CLASS(zfs_dbuf_evict_one_class,
);
/* END CSTYLED */
-#define DEFINE_DBUF_EVICT_ONE_EVENT(name) \
/* BEGIN CSTYLED */
+#define DEFINE_DBUF_EVICT_ONE_EVENT(name) \
DEFINE_EVENT(zfs_dbuf_evict_one_class, name, \
TP_PROTO(dmu_buf_impl_t *db, multilist_sublist_t *mls), \
TP_ARGS(db, mls))
diff --git a/include/sys/trace_dmu.h b/include/sys/trace_dmu.h
index 844746a9c..916c9bdba 100644
--- a/include/sys/trace_dmu.h
+++ b/include/sys/trace_dmu.h
@@ -104,8 +104,8 @@ DECLARE_EVENT_CLASS(zfs_delay_mintime_class,
);
/* END CSTYLED */
-#define DEFINE_DELAY_MINTIME_EVENT(name) \
/* BEGIN CSTYLED */
+#define DEFINE_DELAY_MINTIME_EVENT(name) \
DEFINE_EVENT(zfs_delay_mintime_class, name, \
TP_PROTO(dmu_tx_t *tx, uint64_t dirty, uint64_t min_tx_time), \
TP_ARGS(tx, dirty, min_tx_time))
diff --git a/include/sys/trace_dnode.h b/include/sys/trace_dnode.h
index a651a56cf..7196a497d 100644
--- a/include/sys/trace_dnode.h
+++ b/include/sys/trace_dnode.h
@@ -104,8 +104,8 @@ DECLARE_EVENT_CLASS(zfs_dnode_move_class,
);
/* END CSTYLED */
-#define DEFINE_DNODE_MOVE_EVENT(name) \
/* BEGIN CSTYLED */
+#define DEFINE_DNODE_MOVE_EVENT(name) \
DEFINE_EVENT(zfs_dnode_move_class, name, \
TP_PROTO(dnode_t *dn, int64_t refcount, uint32_t dbufs), \
TP_ARGS(dn, refcount, dbufs))
diff --git a/include/sys/trace_multilist.h b/include/sys/trace_multilist.h
index 7cf4dc39d..ed0b38a3f 100644
--- a/include/sys/trace_multilist.h
+++ b/include/sys/trace_multilist.h
@@ -62,8 +62,8 @@ DECLARE_EVENT_CLASS(zfs_multilist_insert_remove_class,
);
/* END CSTYLED */
-#define DEFINE_MULTILIST_INSERT_REMOVE_EVENT(name) \
/* BEGIN CSTYLED */
+#define DEFINE_MULTILIST_INSERT_REMOVE_EVENT(name) \
DEFINE_EVENT(zfs_multilist_insert_remove_class, name, \
TP_PROTO(multilist_t *ml, unsigned int sublist_idx, void *obj), \
TP_ARGS(ml, sublist_idx, obj))
diff --git a/include/sys/trace_txg.h b/include/sys/trace_txg.h
index 6c414bfce..f85c3f9ef 100644
--- a/include/sys/trace_txg.h
+++ b/include/sys/trace_txg.h
@@ -54,8 +54,8 @@ DECLARE_EVENT_CLASS(zfs_txg_class,
);
/* END CSTYLED */
-#define DEFINE_TXG_EVENT(name) \
/* BEGIN CSTYLED */
+#define DEFINE_TXG_EVENT(name) \
DEFINE_EVENT(zfs_txg_class, name, \
TP_PROTO(dsl_pool_t *dp, uint64_t txg), \
TP_ARGS(dp, txg))
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))