From: Geliang Tang <[email protected]>

The data_ack and data_ack32 fields in struct mptcp_ext are no longer used
anywhere. Remove them from the structure and update mptcp_dump_mpext()
trace helper accordingly. Drop the data_ack field from the trace entry
and the corresponding output in TP_printk().

Signed-off-by: Geliang Tang <[email protected]>
Reviewed-by: Matthieu Baerts (NGI0) <[email protected]>
Signed-off-by: Matthieu Baerts (NGI0) <[email protected]>
---
To: Steven Rostedt <[email protected]>
To: Masami Hiramatsu <[email protected]>
To: Mathieu Desnoyers <[email protected]>
Cc: [email protected]
---
 include/net/mptcp.h          | 4 ----
 include/trace/events/mptcp.h | 6 ++----
 2 files changed, 2 insertions(+), 8 deletions(-)

diff --git a/include/net/mptcp.h b/include/net/mptcp.h
index 71b9fc5a5796..485d55b66ea6 100644
--- a/include/net/mptcp.h
+++ b/include/net/mptcp.h
@@ -19,10 +19,6 @@ struct seq_file;
 
 /* MPTCP sk_buff extension data */
 struct mptcp_ext {
-       union {
-               u64     data_ack;
-               u32     data_ack32;
-       };
        u64             data_seq;
        u32             subflow_seq;
        u16             data_len;
diff --git a/include/trace/events/mptcp.h b/include/trace/events/mptcp.h
index 04521acba483..22882bd03459 100644
--- a/include/trace/events/mptcp.h
+++ b/include/trace/events/mptcp.h
@@ -75,7 +75,6 @@ DECLARE_EVENT_CLASS(mptcp_dump_mpext,
        TP_ARGS(mpext),
 
        TP_STRUCT__entry(
-               __field(u64, data_ack)
                __field(u64, data_seq)
                __field(u32, subflow_seq)
                __field(u16, data_len)
@@ -94,7 +93,6 @@ DECLARE_EVENT_CLASS(mptcp_dump_mpext,
        ),
 
        TP_fast_assign(
-               __entry->data_ack = mpext->ack64 ? mpext->data_ack : 
mpext->data_ack32;
                __entry->data_seq = mpext->data_seq;
                __entry->subflow_seq = mpext->subflow_seq;
                __entry->data_len = mpext->data_len;
@@ -112,8 +110,8 @@ DECLARE_EVENT_CLASS(mptcp_dump_mpext,
                __entry->infinite_map = mpext->infinite_map;
        ),
 
-       TP_printk("data_ack=%llu data_seq=%llu subflow_seq=%u data_len=%u 
csum=%x use_map=%u dsn64=%u data_fin=%u use_ack=%u ack64=%u mpc_map=%u 
frozen=%u reset_transient=%u reset_reason=%u csum_reqd=%u infinite_map=%u",
-                 __entry->data_ack, __entry->data_seq,
+       TP_printk("data_seq=%llu subflow_seq=%u data_len=%u csum=%x use_map=%u 
dsn64=%u data_fin=%u use_ack=%u ack64=%u mpc_map=%u frozen=%u 
reset_transient=%u reset_reason=%u csum_reqd=%u infinite_map=%u",
+                 __entry->data_seq,
                  __entry->subflow_seq, __entry->data_len,
                  __entry->csum, __entry->use_map,
                  __entry->dsn64, __entry->data_fin,

-- 
2.53.0


Reply via email to