From 03ff9ba11ce2de1c64e820a82cb76e6e1b92ceed Mon Sep 17 00:00:00 2001 From: "Liam R. Howlett" Date: Thu, 6 Aug 2020 20:29:12 -0400 Subject: [PATCH] maple: Fix tracepoints Signed-off-by: Liam R. Howlett --- include/trace/events/maple_tree.h | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/include/trace/events/maple_tree.h b/include/trace/events/maple_tree.h index 42803512dc16..20c85ec317a8 100644 --- a/include/trace/events/maple_tree.h +++ b/include/trace/events/maple_tree.h @@ -38,9 +38,9 @@ TRACE_EVENT(mas_split, TRACE_EVENT(mas_spanning_store, - TP_PROTO(struct ma_state *mas, void *entry), + TP_PROTO(struct ma_state *mas), - TP_ARGS(mas, entry), + TP_ARGS(mas), TP_STRUCT__entry( __field(struct ma_state *, mas) @@ -62,9 +62,9 @@ TRACE_EVENT(mas_spanning_store, TRACE_EVENT(mas_rebalance, - TP_PROTO(struct ma_state *mas, struct maple_big_node *b_node), + TP_PROTO(struct ma_state *mas), - TP_ARGS(mas, entry), + TP_ARGS(mas), TP_STRUCT__entry( __field(struct ma_state *, mas) @@ -86,11 +86,9 @@ TRACE_EVENT(mas_rebalance, TRACE_EVENT(mas_spanning_rebalance, - TP_PROTO(struct ma_state *mas, - struct maple_subtree_state *mast, - void *entry), + TP_PROTO(struct ma_state *mas), - TP_ARGS(mas, entry), + TP_ARGS(mas), TP_STRUCT__entry( __field(struct ma_state *, mas) -- 2.50.1