diff mbox series

[net-next,6/7] sunvnet: Remove event tracing file

Message ID 20230106220020.1820147-7-anirudh.venkataramanan@intel.com (mailing list archive)
State Changes Requested
Delegated to: Netdev Maintainers
Headers show
Series Remove three Sun net drivers | expand

Checks

Context Check Description
netdev/tree_selection success Clearly marked for net-next, async
netdev/fixes_present success Fixes tag not required for -next series
netdev/subject_prefix success Link
netdev/cover_letter success Series has a cover letter
netdev/patch_count success Link
netdev/header_inline success No static functions without inline keyword in header files
netdev/build_32bit success Errors and warnings before: 0 this patch: 0
netdev/cc_maintainers warning 2 maintainers not CCed: rostedt@goodmis.org mhiramat@kernel.org
netdev/build_clang success Errors and warnings before: 0 this patch: 0
netdev/module_param success Was 0 now: 0
netdev/verify_signedoff success Signed-off-by tag matches author and committer
netdev/check_selftest success No net selftest shell script
netdev/verify_fixes success No Fixes tag
netdev/build_allmodconfig_warn success Errors and warnings before: 0 this patch: 0
netdev/checkpatch warning WARNING: added, moved or deleted file(s), does MAINTAINERS need updating?
netdev/kdoc success Errors and warnings before: 0 this patch: 0
netdev/source_inline success Was 0 now: 0

Commit Message

Anirudh Venkataramanan Jan. 6, 2023, 10 p.m. UTC
An earlier patch removed the Sun LDOM vswitch and sunvnet drivers, and
as a result, nothing includes sunvnet.h anymore. Remove it.

Note:

checkpatch complains "WARNING: added, moved or deleted file(s), does
MAINTAINERS need updating?". The file being removed doesn't have its
own entry in the MAINTAINERS file, so there's nothing to remove.

Cc: Leon Romanovsky <leon@kernel.org>
Signed-off-by: Anirudh Venkataramanan <anirudh.venkataramanan@intel.com>
---
 include/trace/events/sunvnet.h | 140 ---------------------------------
 1 file changed, 140 deletions(-)
 delete mode 100644 include/trace/events/sunvnet.h
diff mbox series

Patch

diff --git a/include/trace/events/sunvnet.h b/include/trace/events/sunvnet.h
deleted file mode 100644
index 8d444f1..00000000
--- a/include/trace/events/sunvnet.h
+++ /dev/null
@@ -1,140 +0,0 @@ 
-/* SPDX-License-Identifier: GPL-2.0 */
-#undef TRACE_SYSTEM
-#define TRACE_SYSTEM sunvnet
-
-#if !defined(_TRACE_SUNVNET_H) || defined(TRACE_HEADER_MULTI_READ)
-#define _TRACE_SUNVNET_H
-
-#include <linux/tracepoint.h>
-
-TRACE_EVENT(vnet_rx_one,
-
-	TP_PROTO(int lsid, int rsid, int index, int needs_ack),
-
-	TP_ARGS(lsid, rsid, index, needs_ack),
-
-	TP_STRUCT__entry(
-		__field(int, lsid)
-		__field(int, rsid)
-		__field(int, index)
-		__field(int, needs_ack)
-	),
-
-	TP_fast_assign(
-		__entry->lsid = lsid;
-		__entry->rsid = rsid;
-		__entry->index = index;
-		__entry->needs_ack = needs_ack;
-	),
-
-	TP_printk("(%x:%x) walk_rx_one index %d; needs_ack %d",
-		__entry->lsid, __entry->rsid,
-		__entry->index, __entry->needs_ack)
-);
-
-DECLARE_EVENT_CLASS(vnet_tx_stopped_ack_template,
-
-	TP_PROTO(int lsid, int rsid, int ack_end, int npkts),
-
-	TP_ARGS(lsid, rsid, ack_end, npkts),
-
-	TP_STRUCT__entry(
-		__field(int, lsid)
-		__field(int, rsid)
-		__field(int, ack_end)
-		__field(int, npkts)
-	),
-
-	TP_fast_assign(
-		__entry->lsid = lsid;
-		__entry->rsid = rsid;
-		__entry->ack_end = ack_end;
-		__entry->npkts = npkts;
-	),
-
-	TP_printk("(%x:%x) stopped ack for %d; npkts %d",
-		__entry->lsid, __entry->rsid,
-		__entry->ack_end, __entry->npkts)
-);
-DEFINE_EVENT(vnet_tx_stopped_ack_template, vnet_tx_send_stopped_ack,
-	     TP_PROTO(int lsid, int rsid, int ack_end, int npkts),
-	     TP_ARGS(lsid, rsid, ack_end, npkts));
-DEFINE_EVENT(vnet_tx_stopped_ack_template, vnet_tx_defer_stopped_ack,
-	     TP_PROTO(int lsid, int rsid, int ack_end, int npkts),
-	     TP_ARGS(lsid, rsid, ack_end, npkts));
-DEFINE_EVENT(vnet_tx_stopped_ack_template, vnet_tx_pending_stopped_ack,
-	     TP_PROTO(int lsid, int rsid, int ack_end, int npkts),
-	     TP_ARGS(lsid, rsid, ack_end, npkts));
-
-TRACE_EVENT(vnet_rx_stopped_ack,
-
-	TP_PROTO(int lsid, int rsid, int end),
-
-	TP_ARGS(lsid, rsid, end),
-
-	TP_STRUCT__entry(
-		__field(int, lsid)
-		__field(int, rsid)
-		__field(int, end)
-	),
-
-	TP_fast_assign(
-		__entry->lsid = lsid;
-		__entry->rsid = rsid;
-		__entry->end = end;
-	),
-
-	TP_printk("(%x:%x) stopped ack for index %d",
-		__entry->lsid, __entry->rsid, __entry->end)
-);
-
-TRACE_EVENT(vnet_tx_trigger,
-
-	TP_PROTO(int lsid, int rsid, int start, int err),
-
-	TP_ARGS(lsid, rsid, start, err),
-
-	TP_STRUCT__entry(
-		__field(int, lsid)
-		__field(int, rsid)
-		__field(int, start)
-		__field(int, err)
-	),
-
-	TP_fast_assign(
-		__entry->lsid = lsid;
-		__entry->rsid = rsid;
-		__entry->start = start;
-		__entry->err = err;
-	),
-
-	TP_printk("(%x:%x) Tx trigger for %d sent with err %d %s",
-		__entry->lsid, __entry->rsid, __entry->start,
-		__entry->err, __entry->err > 0 ? "(ok)" : " ")
-);
-
-TRACE_EVENT(vnet_skip_tx_trigger,
-
-	TP_PROTO(int lsid, int rsid, int last),
-
-	TP_ARGS(lsid, rsid, last),
-
-	TP_STRUCT__entry(
-		__field(int, lsid)
-		__field(int, rsid)
-		__field(int, last)
-	),
-
-	TP_fast_assign(
-		__entry->lsid = lsid;
-		__entry->rsid = rsid;
-		__entry->last = last;
-	),
-
-	TP_printk("(%x:%x) Skip Tx trigger. Last trigger sent was %d",
-		__entry->lsid, __entry->rsid, __entry->last)
-);
-#endif /* _TRACE_SOCK_H */
-
-/* This part must be outside protection */
-#include <trace/define_trace.h>