diff options
author | Brian Behlendorf <[email protected]> | 2017-01-24 08:50:15 -0800 |
---|---|---|
committer | GitHub <[email protected]> | 2017-01-24 08:50:15 -0800 |
commit | e82dbae1ee33170ed3924c5229db651caf384333 (patch) | |
tree | 1f4b00879d9300ebffae6cae1dc861e50ca13737 /include/sys/trace_dbuf.h | |
parent | e85d62faaea9871293c1c26675ee665ebe3733e4 (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_dbuf.h')
-rw-r--r-- | include/sys/trace_dbuf.h | 4 |
1 files changed, 2 insertions, 2 deletions
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)) |