diff options
Diffstat (limited to 'sys/netinet')
-rw-r--r-- | sys/netinet/siftr.c | 2 | ||||
-rw-r--r-- | sys/netinet/tcp_stacks/fastpath.c | 2 | ||||
-rw-r--r-- | sys/netinet/tcp_var.h | 2 |
3 files changed, 2 insertions, 4 deletions
diff --git a/sys/netinet/siftr.c b/sys/netinet/siftr.c index 6b31d7b..c484e98 100644 --- a/sys/netinet/siftr.c +++ b/sys/netinet/siftr.c @@ -1561,6 +1561,6 @@ static moduledata_t siftr_mod = { * Defines the initialisation order of this kld relative to others * within the same subsystem as defined by param 3 */ -DECLARE_MODULE(siftr, siftr_mod, SI_SUB_SMP, SI_ORDER_ANY); +DECLARE_MODULE(siftr, siftr_mod, SI_SUB_LAST, SI_ORDER_ANY); MODULE_DEPEND(siftr, alq, 1, 1, 1); MODULE_VERSION(siftr, MODVERSION); diff --git a/sys/netinet/tcp_stacks/fastpath.c b/sys/netinet/tcp_stacks/fastpath.c index 5eddccf..a447b88 100644 --- a/sys/netinet/tcp_stacks/fastpath.c +++ b/sys/netinet/tcp_stacks/fastpath.c @@ -124,8 +124,6 @@ __FBSDID("$FreeBSD$"); #include <security/mac/mac_framework.h> -extern const int tcprexmtthresh; - VNET_DECLARE(int, tcp_autorcvbuf_inc); #define V_tcp_autorcvbuf_inc VNET(tcp_autorcvbuf_inc) VNET_DECLARE(int, tcp_autorcvbuf_max); diff --git a/sys/netinet/tcp_var.h b/sys/netinet/tcp_var.h index 32aa0bb..2f23881 100644 --- a/sys/netinet/tcp_var.h +++ b/sys/netinet/tcp_var.h @@ -666,7 +666,7 @@ struct xtcpcb { */ #define TCPCTL_DO_RFC1323 1 /* use RFC-1323 extensions */ #define TCPCTL_MSSDFLT 3 /* MSS default */ -#define TCPCTL_STATS 4 /* statistics (read-only) */ +#define TCPCTL_STATS 4 /* statistics */ #define TCPCTL_RTTDFLT 5 /* default RTT estimate */ #define TCPCTL_KEEPIDLE 6 /* keepalive idle timer */ #define TCPCTL_KEEPINTVL 7 /* interval to send keepalives */ |