Date: Thu, 21 Jan 2016 22:24:20 +0000 (UTC) From: Gleb Smirnoff <glebius@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r294534 - in head/sys/netinet: . cc tcp_stacks Message-ID: <201601212224.u0LMOKUZ006904@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: glebius Date: Thu Jan 21 22:24:20 2016 New Revision: 294534 URL: https://svnweb.freebsd.org/changeset/base/294534 Log: Cleanup TCP files from unnecessary interface related includes. Modified: head/sys/netinet/cc/cc.c head/sys/netinet/cc/cc_cdg.c head/sys/netinet/cc/cc_chd.c head/sys/netinet/cc/cc_dctcp.c head/sys/netinet/cc/cc_hd.c head/sys/netinet/cc/cc_vegas.c head/sys/netinet/tcp_input.c head/sys/netinet/tcp_stacks/fastpath.c Modified: head/sys/netinet/cc/cc.c ============================================================================== --- head/sys/netinet/cc/cc.c Thu Jan 21 21:42:06 2016 (r294533) +++ head/sys/netinet/cc/cc.c Thu Jan 21 22:24:20 2016 (r294534) @@ -63,8 +63,7 @@ __FBSDID("$FreeBSD$"); #include <sys/socketvar.h> #include <sys/sysctl.h> -#include <net/if.h> -#include <net/if_var.h> +#include <net/vnet.h> #include <netinet/cc.h> #include <netinet/in.h> Modified: head/sys/netinet/cc/cc_cdg.c ============================================================================== --- head/sys/netinet/cc/cc_cdg.c Thu Jan 21 21:42:06 2016 (r294533) +++ head/sys/netinet/cc/cc_cdg.c Thu Jan 21 22:24:20 2016 (r294534) @@ -63,7 +63,6 @@ __FBSDID("$FreeBSD$"); #include <sys/sysctl.h> #include <sys/systm.h> -#include <net/if.h> #include <net/vnet.h> #include <netinet/cc.h> Modified: head/sys/netinet/cc/cc_chd.c ============================================================================== --- head/sys/netinet/cc/cc_chd.c Thu Jan 21 21:42:06 2016 (r294533) +++ head/sys/netinet/cc/cc_chd.c Thu Jan 21 22:24:20 2016 (r294534) @@ -65,7 +65,6 @@ __FBSDID("$FreeBSD$"); #include <sys/sysctl.h> #include <sys/systm.h> -#include <net/if.h> #include <net/vnet.h> #include <netinet/cc.h> Modified: head/sys/netinet/cc/cc_dctcp.c ============================================================================== --- head/sys/netinet/cc/cc_dctcp.c Thu Jan 21 21:42:06 2016 (r294533) +++ head/sys/netinet/cc/cc_dctcp.c Thu Jan 21 22:24:20 2016 (r294534) @@ -50,8 +50,6 @@ __FBSDID("$FreeBSD$"); #include <net/vnet.h> -#include <netinet/in.h> -#include <netinet/ip.h> #include <netinet/cc.h> #include <netinet/tcp_seq.h> #include <netinet/tcp_var.h> Modified: head/sys/netinet/cc/cc_hd.c ============================================================================== --- head/sys/netinet/cc/cc_hd.c Thu Jan 21 21:42:06 2016 (r294533) +++ head/sys/netinet/cc/cc_hd.c Thu Jan 21 22:24:20 2016 (r294534) @@ -66,7 +66,6 @@ __FBSDID("$FreeBSD$"); #include <sys/sysctl.h> #include <sys/systm.h> -#include <net/if.h> #include <net/vnet.h> #include <netinet/cc.h> Modified: head/sys/netinet/cc/cc_vegas.c ============================================================================== --- head/sys/netinet/cc/cc_vegas.c Thu Jan 21 21:42:06 2016 (r294533) +++ head/sys/netinet/cc/cc_vegas.c Thu Jan 21 22:24:20 2016 (r294534) @@ -67,7 +67,6 @@ __FBSDID("$FreeBSD$"); #include <sys/sysctl.h> #include <sys/systm.h> -#include <net/if.h> #include <net/vnet.h> #include <netinet/cc.h> Modified: head/sys/netinet/tcp_input.c ============================================================================== --- head/sys/netinet/tcp_input.c Thu Jan 21 21:42:06 2016 (r294533) +++ head/sys/netinet/tcp_input.c Thu Jan 21 22:24:20 2016 (r294534) @@ -87,7 +87,6 @@ __FBSDID("$FreeBSD$"); #include <netinet/in_kdtrace.h> #include <netinet/in_pcb.h> #include <netinet/in_systm.h> -#include <netinet/in_var.h> #include <netinet/ip.h> #include <netinet/ip_icmp.h> /* required for icmp_var.h */ #include <netinet/icmp_var.h> /* for ICMP_BANDLIM */ @@ -96,6 +95,7 @@ __FBSDID("$FreeBSD$"); #include <netinet/ip6.h> #include <netinet/icmp6.h> #include <netinet6/in6_pcb.h> +#include <netinet6/in6_var.h> #include <netinet6/ip6_var.h> #include <netinet6/nd6.h> #ifdef TCP_RFC7413 Modified: head/sys/netinet/tcp_stacks/fastpath.c ============================================================================== --- head/sys/netinet/tcp_stacks/fastpath.c Thu Jan 21 21:42:06 2016 (r294533) +++ head/sys/netinet/tcp_stacks/fastpath.c Thu Jan 21 22:24:20 2016 (r294534) @@ -81,8 +81,6 @@ __FBSDID("$FreeBSD$"); #include <vm/uma.h> -#include <net/if.h> -#include <net/if_var.h> #include <net/route.h> #include <net/vnet.h> @@ -93,7 +91,6 @@ __FBSDID("$FreeBSD$"); #include <netinet/in_kdtrace.h> #include <netinet/in_pcb.h> #include <netinet/in_systm.h> -#include <netinet/in_var.h> #include <netinet/ip.h> #include <netinet/ip_icmp.h> /* required for icmp_var.h */ #include <netinet/icmp_var.h> /* for ICMP_BANDLIM */ @@ -103,7 +100,6 @@ __FBSDID("$FreeBSD$"); #include <netinet/icmp6.h> #include <netinet6/in6_pcb.h> #include <netinet6/ip6_var.h> -#include <netinet6/nd6.h> #include <netinet/tcp_fsm.h> #include <netinet/tcp_seq.h> #include <netinet/tcp_timer.h>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201601212224.u0LMOKUZ006904>