diff options
Diffstat (limited to 'fs/xfs/xfs_trace.h')
| -rw-r--r-- | fs/xfs/xfs_trace.h | 18 | 
1 files changed, 9 insertions, 9 deletions
diff --git a/fs/xfs/xfs_trace.h b/fs/xfs/xfs_trace.h index 7cf9d3529e5..caf5dabfd55 100644 --- a/fs/xfs/xfs_trace.h +++ b/fs/xfs/xfs_trace.h @@ -32,7 +32,7 @@ struct xfs_da_node_entry;  struct xfs_dquot;  struct xfs_log_item;  struct xlog_ticket; -struct log; +struct xlog;  struct xlog_recover;  struct xlog_recover_item;  struct xfs_buf_log_format; @@ -762,7 +762,7 @@ DEFINE_DQUOT_EVENT(xfs_dqflush_force);  DEFINE_DQUOT_EVENT(xfs_dqflush_done);  DECLARE_EVENT_CLASS(xfs_loggrant_class, -	TP_PROTO(struct log *log, struct xlog_ticket *tic), +	TP_PROTO(struct xlog *log, struct xlog_ticket *tic),  	TP_ARGS(log, tic),  	TP_STRUCT__entry(  		__field(dev_t, dev) @@ -830,7 +830,7 @@ DECLARE_EVENT_CLASS(xfs_loggrant_class,  #define DEFINE_LOGGRANT_EVENT(name) \  DEFINE_EVENT(xfs_loggrant_class, name, \ -	TP_PROTO(struct log *log, struct xlog_ticket *tic), \ +	TP_PROTO(struct xlog *log, struct xlog_ticket *tic), \  	TP_ARGS(log, tic))  DEFINE_LOGGRANT_EVENT(xfs_log_done_nonperm);  DEFINE_LOGGRANT_EVENT(xfs_log_done_perm); @@ -1664,7 +1664,7 @@ DEFINE_SWAPEXT_EVENT(xfs_swap_extent_before);  DEFINE_SWAPEXT_EVENT(xfs_swap_extent_after);  DECLARE_EVENT_CLASS(xfs_log_recover_item_class, -	TP_PROTO(struct log *log, struct xlog_recover *trans, +	TP_PROTO(struct xlog *log, struct xlog_recover *trans,  		struct xlog_recover_item *item, int pass),  	TP_ARGS(log, trans, item, pass),  	TP_STRUCT__entry( @@ -1698,7 +1698,7 @@ DECLARE_EVENT_CLASS(xfs_log_recover_item_class,  #define DEFINE_LOG_RECOVER_ITEM(name) \  DEFINE_EVENT(xfs_log_recover_item_class, name, \ -	TP_PROTO(struct log *log, struct xlog_recover *trans, \ +	TP_PROTO(struct xlog *log, struct xlog_recover *trans, \  		struct xlog_recover_item *item, int pass), \  	TP_ARGS(log, trans, item, pass)) @@ -1709,7 +1709,7 @@ DEFINE_LOG_RECOVER_ITEM(xfs_log_recover_item_reorder_tail);  DEFINE_LOG_RECOVER_ITEM(xfs_log_recover_item_recover);  DECLARE_EVENT_CLASS(xfs_log_recover_buf_item_class, -	TP_PROTO(struct log *log, struct xfs_buf_log_format *buf_f), +	TP_PROTO(struct xlog *log, struct xfs_buf_log_format *buf_f),  	TP_ARGS(log, buf_f),  	TP_STRUCT__entry(  		__field(dev_t, dev) @@ -1739,7 +1739,7 @@ DECLARE_EVENT_CLASS(xfs_log_recover_buf_item_class,  #define DEFINE_LOG_RECOVER_BUF_ITEM(name) \  DEFINE_EVENT(xfs_log_recover_buf_item_class, name, \ -	TP_PROTO(struct log *log, struct xfs_buf_log_format *buf_f), \ +	TP_PROTO(struct xlog *log, struct xfs_buf_log_format *buf_f), \  	TP_ARGS(log, buf_f))  DEFINE_LOG_RECOVER_BUF_ITEM(xfs_log_recover_buf_not_cancel); @@ -1752,7 +1752,7 @@ DEFINE_LOG_RECOVER_BUF_ITEM(xfs_log_recover_buf_reg_buf);  DEFINE_LOG_RECOVER_BUF_ITEM(xfs_log_recover_buf_dquot_buf);  DECLARE_EVENT_CLASS(xfs_log_recover_ino_item_class, -	TP_PROTO(struct log *log, struct xfs_inode_log_format *in_f), +	TP_PROTO(struct xlog *log, struct xfs_inode_log_format *in_f),  	TP_ARGS(log, in_f),  	TP_STRUCT__entry(  		__field(dev_t, dev) @@ -1790,7 +1790,7 @@ DECLARE_EVENT_CLASS(xfs_log_recover_ino_item_class,  )  #define DEFINE_LOG_RECOVER_INO_ITEM(name) \  DEFINE_EVENT(xfs_log_recover_ino_item_class, name, \ -	TP_PROTO(struct log *log, struct xfs_inode_log_format *in_f), \ +	TP_PROTO(struct xlog *log, struct xfs_inode_log_format *in_f), \  	TP_ARGS(log, in_f))  DEFINE_LOG_RECOVER_INO_ITEM(xfs_log_recover_inode_recover);  |