Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F102769718
D42696.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
D42696.diff
View Options
diff --git a/sys/netinet/tcp_subr.c b/sys/netinet/tcp_subr.c
--- a/sys/netinet/tcp_subr.c
+++ b/sys/netinet/tcp_subr.c
@@ -4678,3 +4678,30 @@
return (srtt);
}
+
+void
+tcp_account_for_send(struct tcpcb *tp, uint32_t len, uint8_t is_rxt,
+ uint8_t is_tlp, bool hw_tls)
+{
+
+ if (is_tlp) {
+ tp->t_sndtlppack++;
+ tp->t_sndtlpbyte += len;
+ }
+ /* To get total bytes sent you must add t_snd_rxt_bytes to t_sndbytes */
+ if (is_rxt)
+ tp->t_snd_rxt_bytes += len;
+ else
+ tp->t_sndbytes += len;
+
+#ifdef KERN_TLS
+ if (hw_tls && is_rxt && len != 0) {
+ uint64_t rexmit_percent;
+
+ rexmit_percent = (1000ULL * tp->t_snd_rxt_bytes) /
+ (10ULL * (tp->t_snd_rxt_bytes + tp->t_sndbytes));
+ if (rexmit_percent > ktls_ifnet_max_rexmit_pct)
+ ktls_disable_ifnet(tp);
+ }
+#endif
+}
diff --git a/sys/netinet/tcp_var.h b/sys/netinet/tcp_var.h
--- a/sys/netinet/tcp_var.h
+++ b/sys/netinet/tcp_var.h
@@ -38,7 +38,6 @@
#include <netinet/tcp_fsm.h>
#ifdef _KERNEL
-#include "opt_kern_tls.h"
#include <net/vnet.h>
#include <sys/mbuf.h>
#include <sys/ktls.h>
@@ -1358,6 +1357,7 @@
#define V_tcp_hhh VNET(tcp_hhh)
#endif
+void tcp_account_for_send(struct tcpcb *, uint32_t, uint8_t, uint8_t, bool);
int tcp_addoptions(struct tcpopt *, u_char *);
struct tcpcb *
tcp_close(struct tcpcb *);
@@ -1591,30 +1591,6 @@
th->th_x2 = (flags >> 8) & 0x0f;
th->th_flags = flags & 0xff;
}
-
-static inline void
-tcp_account_for_send(struct tcpcb *tp, uint32_t len, uint8_t is_rxt,
- uint8_t is_tlp, bool hw_tls)
-{
- if (is_tlp) {
- tp->t_sndtlppack++;
- tp->t_sndtlpbyte += len;
- }
- /* To get total bytes sent you must add t_snd_rxt_bytes to t_sndbytes */
- if (is_rxt)
- tp->t_snd_rxt_bytes += len;
- else
- tp->t_sndbytes += len;
-
-#ifdef KERN_TLS
- if (hw_tls && is_rxt && len != 0) {
- uint64_t rexmit_percent = (1000ULL * tp->t_snd_rxt_bytes) / (10ULL * (tp->t_snd_rxt_bytes + tp->t_sndbytes));
- if (rexmit_percent > ktls_ifnet_max_rexmit_pct)
- ktls_disable_ifnet(tp);
- }
-#endif
-
-}
#endif /* _KERNEL */
#endif /* _NETINET_TCP_VAR_H_ */
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Nov 17, 10:39 PM (21 h, 43 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
14685630
Default Alt Text
D42696.diff (2 KB)
Attached To
Mode
D42696: tcp: uninline tcp_account_for_send()
Attached
Detach File
Event Timeline
Log In to Comment