git: 85a9a388799d - stable/14 - tcp: whitespace cleanup of enum tcp_log_events

From: Michael Tuexen <tuexen_at_FreeBSD.org>
Date: Sat, 03 Aug 2024 22:54:25 UTC
The branch stable/14 has been updated by tuexen:

URL: https://cgit.FreeBSD.org/src/commit/?id=85a9a388799d1c3972fae27ddd44ab98bb1694be

commit 85a9a388799d1c3972fae27ddd44ab98bb1694be
Author:     Michael Tuexen <tuexen@FreeBSD.org>
AuthorDate: 2024-07-11 09:38:11 +0000
Commit:     Michael Tuexen <tuexen@FreeBSD.org>
CommitDate: 2024-08-03 22:53:41 +0000

    tcp: whitespace cleanup of enum tcp_log_events
    
    No functional change intended.
    
    Sponsored by:   Netflix, Inc.
    
    (cherry picked from commit af84665261ff0aa4c930456f79ba89a73613a63f)
---
 sys/netinet/tcp_log_buf.h | 36 ++++++++++++++++++------------------
 1 file changed, 18 insertions(+), 18 deletions(-)

diff --git a/sys/netinet/tcp_log_buf.h b/sys/netinet/tcp_log_buf.h
index 79f96bab1345..3c72ed49005c 100644
--- a/sys/netinet/tcp_log_buf.h
+++ b/sys/netinet/tcp_log_buf.h
@@ -219,18 +219,18 @@ enum tcp_log_events {
 	BBR_LOG_BBRRTT,		/* BBR RTT is updated               20 */
 	BBR_LOG_JUSTRET,	/* We just returned out of output   21 */
 	BBR_LOG_STATE,		/* A BBR state change occurred      22 */
-	BBR_LOG_PKT_EPOCH,      /* A BBR packet epoch occurred      23 */
-	BBR_LOG_PERSIST,        /* BBR changed to/from a persists   24 */
-	TCP_LOG_FLOWEND,        /* End of a flow                    25 */
-	BBR_LOG_RTO,            /* BBR's timeout includes BBR info  26 */
-	BBR_LOG_DOSEG_DONE,     /* hpts do_segment completes        27 */
-	BBR_LOG_EXIT_GAIN,      /* hpts do_segment completes        28 */
-	BBR_LOG_THRESH_CALC,    /* Doing threshold calculation      29 */
+	BBR_LOG_PKT_EPOCH,	/* A BBR packet epoch occurred      23 */
+	BBR_LOG_PERSIST,	/* BBR changed to/from a persists   24 */
+	TCP_LOG_FLOWEND,	/* End of a flow                    25 */
+	BBR_LOG_RTO,		/* BBR's timeout includes BBR info  26 */
+	BBR_LOG_DOSEG_DONE,	/* hpts do_segment completes        27 */
+	BBR_LOG_EXIT_GAIN,	/* hpts do_segment completes        28 */
+	BBR_LOG_THRESH_CALC,	/* Doing threshold calculation      29 */
 	TCP_LOG_MAPCHG,		/* Map Changes to the sendmap       30 */
-	TCP_LOG_USERSEND, 	/* User level sends data            31 */
+	TCP_LOG_USERSEND,	/* User level sends data            31 */
 	BBR_RSM_CLEARED,	/* RSM cleared of ACK flags         32 */
-	BBR_LOG_STATE_TARGET, 	/* Log of target at state           33 */
-	BBR_LOG_TIME_EPOCH, 	/* A timed based Epoch occurred     34 */
+	BBR_LOG_STATE_TARGET,	/* Log of target at state           33 */
+	BBR_LOG_TIME_EPOCH,	/* A timed based Epoch occurred     34 */
 	BBR_LOG_TO_PROCESS,	/* A to was processed               35 */
 	BBR_LOG_BBRTSO,		/* TSO update                       36 */
 	BBR_LOG_HPTSDIAG,	/* Hpts diag insert                 37 */
@@ -257,15 +257,15 @@ enum tcp_log_events {
 	TCP_TIMELY_WORK,	/* Logs regarding Timely CC tweaks  58 */
 	TCP_LOG_USER_EVENT,	/* User space event data            59 */
 	TCP_LOG_SENDFILE,	/* sendfile() logging for TCP connections 60 */
-	TCP_LOG_REQ_T,		/* logging of request tracking 61 */
-	TCP_LOG_ACCOUNTING,	/* Log of TCP Accounting data 62 */
-	TCP_LOG_FSB,		/* FSB information 63 */
+	TCP_LOG_REQ_T,		/* logging of request tracking      61 */
+	TCP_LOG_ACCOUNTING,	/* Log of TCP Accounting data       62 */
+	TCP_LOG_FSB,		/* FSB information                  63 */
 	RACK_DSACK_HANDLING,	/* Handling of DSACK in rack for reordering window 64 */
-	TCP_HYSTART,		/* TCP Hystart logging 65 */
-	TCP_CHG_QUERY,		/* Change query during fnc_init() 66 */
-	TCP_RACK_LOG_COLLAPSE,	/* Window collapse by peer 67 */
-	TCP_RACK_TP_TRIGGERED,	/* A rack tracepoint is triggered 68 */
-	TCP_HYBRID_PACING_LOG,	/* Hybrid pacing log 69 */
+	TCP_HYSTART,		/* TCP Hystart logging              65 */
+	TCP_CHG_QUERY,		/* Change query during fnc_init()   66 */
+	TCP_RACK_LOG_COLLAPSE,	/* Window collapse by peer          67 */
+	TCP_RACK_TP_TRIGGERED,	/* A rack tracepoint is triggered   68 */
+	TCP_HYBRID_PACING_LOG,	/* Hybrid pacing log                69 */
 	TCP_LOG_PRU,		/* TCP protocol user request        70 */
 	TCP_LOG_END		/* End (keep at end)                71 */
 };