aboutsummaryrefslogtreecommitdiff
path: root/sys/netinet/tcp_lro.h
diff options
context:
space:
mode:
authorRandall Stewart <rrs@FreeBSD.org>2020-02-12 13:31:36 +0000
committerRandall Stewart <rrs@FreeBSD.org>2020-02-12 13:31:36 +0000
commit481be5de9deed47eae529c7e5df890520ebc6837 (patch)
treeae00086429032445d9eb8f0f606d1f7d3f20561a /sys/netinet/tcp_lro.h
parentdf341f5986e63970ef51eb9d751681b13e62a12f (diff)
downloadsrc-481be5de9deed47eae529c7e5df890520ebc6837.tar.gz
src-481be5de9deed47eae529c7e5df890520ebc6837.zip
White space cleanup -- remove trailing tab's or spaces
from any line. Sponsored by: Netflix Inc.
Notes
Notes: svn path=/head/; revision=357818
Diffstat (limited to 'sys/netinet/tcp_lro.h')
-rw-r--r--sys/netinet/tcp_lro.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/netinet/tcp_lro.h b/sys/netinet/tcp_lro.h
index 1c6d2dd54e1b..f2c05ad4aec7 100644
--- a/sys/netinet/tcp_lro.h
+++ b/sys/netinet/tcp_lro.h
@@ -77,12 +77,12 @@ struct lro_entry {
uint16_t mbuf_appended;
struct timeval mtime;
};
-/*
- * Note: The mbuf_cnt field tracks our number of mbufs added to the m_next
- * list. Each mbuf counted can have data and of course it will
- * have an ack as well (by defintion any inbound tcp segment will
+/*
+ * Note: The mbuf_cnt field tracks our number of mbufs added to the m_next
+ * list. Each mbuf counted can have data and of course it will
+ * have an ack as well (by defintion any inbound tcp segment will
* have an ack value. We use this count to tell us how many ACK's
- * are present for our ack-count threshold. If we exceed that or
+ * are present for our ack-count threshold. If we exceed that or
* the data threshold we will wake up the endpoint.
*/
LIST_HEAD(lro_head, lro_entry);
@@ -130,7 +130,7 @@ void tcp_lro_flush_all(struct lro_ctrl *);
int tcp_lro_rx(struct lro_ctrl *, struct mbuf *, uint32_t);
void tcp_lro_queue_mbuf(struct lro_ctrl *, struct mbuf *);
void tcp_lro_reg_mbufq(void);
-void tcp_lro_dereg_mbufq(void);
+void tcp_lro_dereg_mbufq(void);
#define TCP_LRO_NO_ENTRIES -2
#define TCP_LRO_CANNOT -1