+{ "REXMT", "PERSIST", "KEEP", "2MSL", "DELACK"};
+#endif /* TCPTIMERS */
+
+/*
+ * Persist, keep, 2msl and MPTCP's join-ack timer as slow timers which can
+ * be coalesced at a higher granularity (500 ms).
+ *
+ * Rexmt and delayed ack timers are considered as fast timers which run
+ * in the order of 100ms.
+ *
+ * Probe timeout is a quick timer which will run in the order of 10ms.
+ */
+#define IS_TIMER_HZ_500MS(i) ((i) >= TCPT_PERSIST)
+#define IS_TIMER_HZ_100MS(i) ((i) >= TCPT_REXMT && (i) < TCPT_PERSIST)
+#define IS_TIMER_HZ_10MS(i) ((i) < TCPT_REXMT)
+
+struct tcptimerlist;
+
+struct tcptimerentry {
+ LIST_ENTRY(tcptimerentry) le; /* links for timer list */
+ uint32_t timer_start; /* tcp clock when the timer was started */
+ uint16_t index; /* index of lowest timer that needs to run first */
+ uint16_t mode; /* Bit-wise OR of timers that are active */
+ uint32_t runtime; /* deadline at which the first timer has to fire */
+};
+
+LIST_HEAD(timerlisthead, tcptimerentry);
+
+struct tcptimerlist {
+ struct timerlisthead lhead; /* head of the list */
+ lck_mtx_t *mtx; /* lock to protect the list */
+ lck_attr_t *mtx_attr; /* mutex attributes */
+ lck_grp_t *mtx_grp; /* mutex group definition */
+ lck_grp_attr_t *mtx_grp_attr; /* mutex group attributes */
+ thread_call_t call; /* call entry */
+ uint32_t runtime; /* time at which this list is going to run */
+ uint32_t schedtime; /* time at which this list was scheduled */
+ uint32_t entries; /* Number of entries on the list */
+ uint32_t maxentries; /* Max number of entries at any time */
+
+ /* Set desired mode when timer list running */
+ boolean_t running; /* Set when timer list is being processed */
+ boolean_t scheduled; /* set when the timer is scheduled */
+#define TCP_TIMERLIST_10MS_MODE 0x1
+#define TCP_TIMERLIST_100MS_MODE 0x2
+#define TCP_TIMERLIST_500MS_MODE 0x4
+ uint32_t mode; /* Current mode of the timer */
+ uint32_t pref_mode; /* Preferred mode set by a connection */
+ uint32_t pref_offset; /* Preferred offset set by a connection */
+ uint32_t idleruns; /* Number of times the list has been idle in fast mode */
+ struct tcptimerentry *next_te; /* next timer entry pointer to process */
+ u_int16_t probe_if_index; /* Interface index that needs to send probes */
+};
+
+/* number of idle runs allowed for TCP timer list in fast or quick modes */
+#define TCP_FASTMODE_IDLERUN_MAX 10