From owner-svn-src-head@freebsd.org Wed Jan 27 17:59:42 2016 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 56D79A7046D; Wed, 27 Jan 2016 17:59:42 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2DCD01A75; Wed, 27 Jan 2016 17:59:42 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u0RHxft1038483; Wed, 27 Jan 2016 17:59:41 GMT (envelope-from glebius@FreeBSD.org) Received: (from glebius@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u0RHxdP2038464; Wed, 27 Jan 2016 17:59:39 GMT (envelope-from glebius@FreeBSD.org) Message-Id: <201601271759.u0RHxdP2038464@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: glebius set sender to glebius@FreeBSD.org using -f From: Gleb Smirnoff Date: Wed, 27 Jan 2016 17:59:39 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r294931 - in head: share/man/man9 sys/netinet sys/netinet/cc sys/netinet/tcp_stacks X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Jan 2016 17:59:42 -0000 Author: glebius Date: Wed Jan 27 17:59:39 2016 New Revision: 294931 URL: https://svnweb.freebsd.org/changeset/base/294931 Log: Rename netinet/tcp_cc.h to netinet/cc/cc.h. Discussed with: lstewart Added: head/sys/netinet/cc/cc.h - copied, changed from r294930, head/sys/netinet/tcp_cc.h Deleted: head/sys/netinet/tcp_cc.h Modified: head/share/man/man9/mod_cc.9 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_cubic.c head/sys/netinet/cc/cc_dctcp.c head/sys/netinet/cc/cc_hd.c head/sys/netinet/cc/cc_htcp.c head/sys/netinet/cc/cc_newreno.c head/sys/netinet/cc/cc_vegas.c head/sys/netinet/tcp_input.c head/sys/netinet/tcp_output.c head/sys/netinet/tcp_stacks/fastpath.c head/sys/netinet/tcp_subr.c head/sys/netinet/tcp_timer.c head/sys/netinet/tcp_usrreq.c Modified: head/share/man/man9/mod_cc.9 ============================================================================== --- head/share/man/man9/mod_cc.9 Wed Jan 27 17:55:01 2016 (r294930) +++ head/share/man/man9/mod_cc.9 Wed Jan 27 17:59:39 2016 (r294931) @@ -41,7 +41,7 @@ .Nd Modular Congestion Control .Sh SYNOPSIS .In netinet/tcp.h -.In netinet/tcp_cc.h +.In netinet/cc/cc.h .In netinet/cc/cc_module.h .Fn DECLARE_CC_MODULE "ccname" "ccalgo" .Fn CCV "ccv" "what" Modified: head/sys/netinet/cc/cc.c ============================================================================== --- head/sys/netinet/cc/cc.c Wed Jan 27 17:55:01 2016 (r294930) +++ head/sys/netinet/cc/cc.c Wed Jan 27 17:59:39 2016 (r294931) @@ -69,7 +69,7 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include +#include #include Copied and modified: head/sys/netinet/cc/cc.h (from r294930, head/sys/netinet/tcp_cc.h) ============================================================================== --- head/sys/netinet/tcp_cc.h Wed Jan 27 17:55:01 2016 (r294930, copy source) +++ head/sys/netinet/cc/cc.h Wed Jan 27 17:59:39 2016 (r294931) @@ -48,8 +48,8 @@ * http://caia.swin.edu.au/urp/newtcp/ */ -#ifndef _NETINET_TCP_CC_H_ -#define _NETINET_TCP_CC_H_ +#ifndef _NETINET_CC_CC_H_ +#define _NETINET_CC_CC_H_ #if !defined(_KERNEL) #error "no user-servicable parts inside" @@ -175,4 +175,4 @@ extern struct rwlock cc_list_lock; #define CC_LIST_WUNLOCK() rw_wunlock(&cc_list_lock) #define CC_LIST_LOCK_ASSERT() rw_assert(&cc_list_lock, RA_LOCKED) -#endif /* _NETINET_TCP_CC_H_ */ +#endif /* _NETINET_CC_CC_H_ */ Modified: head/sys/netinet/cc/cc_cdg.c ============================================================================== --- head/sys/netinet/cc/cc_cdg.c Wed Jan 27 17:55:01 2016 (r294930) +++ head/sys/netinet/cc/cc_cdg.c Wed Jan 27 17:59:39 2016 (r294931) @@ -69,7 +69,7 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include +#include #include #include Modified: head/sys/netinet/cc/cc_chd.c ============================================================================== --- head/sys/netinet/cc/cc_chd.c Wed Jan 27 17:55:01 2016 (r294930) +++ head/sys/netinet/cc/cc_chd.c Wed Jan 27 17:59:39 2016 (r294931) @@ -71,7 +71,7 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include +#include #include #include Modified: head/sys/netinet/cc/cc_cubic.c ============================================================================== --- head/sys/netinet/cc/cc_cubic.c Wed Jan 27 17:55:01 2016 (r294930) +++ head/sys/netinet/cc/cc_cubic.c Wed Jan 27 17:59:39 2016 (r294931) @@ -63,7 +63,7 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include +#include #include #include Modified: head/sys/netinet/cc/cc_dctcp.c ============================================================================== --- head/sys/netinet/cc/cc_dctcp.c Wed Jan 27 17:55:01 2016 (r294930) +++ head/sys/netinet/cc/cc_dctcp.c Wed Jan 27 17:59:39 2016 (r294931) @@ -53,7 +53,7 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include +#include #include #define CAST_PTR_INT(X) (*((int*)(X))) Modified: head/sys/netinet/cc/cc_hd.c ============================================================================== --- head/sys/netinet/cc/cc_hd.c Wed Jan 27 17:55:01 2016 (r294930) +++ head/sys/netinet/cc/cc_hd.c Wed Jan 27 17:59:39 2016 (r294931) @@ -72,7 +72,7 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include +#include #include #include Modified: head/sys/netinet/cc/cc_htcp.c ============================================================================== --- head/sys/netinet/cc/cc_htcp.c Wed Jan 27 17:55:01 2016 (r294930) +++ head/sys/netinet/cc/cc_htcp.c Wed Jan 27 17:59:39 2016 (r294931) @@ -66,7 +66,7 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include +#include #include /* Fixed point math shifts. */ Modified: head/sys/netinet/cc/cc_newreno.c ============================================================================== --- head/sys/netinet/cc/cc_newreno.c Wed Jan 27 17:55:01 2016 (r294930) +++ head/sys/netinet/cc/cc_newreno.c Wed Jan 27 17:59:39 2016 (r294931) @@ -65,7 +65,7 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include +#include #include static void newreno_ack_received(struct cc_var *ccv, uint16_t type); Modified: head/sys/netinet/cc/cc_vegas.c ============================================================================== --- head/sys/netinet/cc/cc_vegas.c Wed Jan 27 17:55:01 2016 (r294930) +++ head/sys/netinet/cc/cc_vegas.c Wed Jan 27 17:59:39 2016 (r294931) @@ -72,7 +72,7 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include +#include #include #include Modified: head/sys/netinet/tcp_input.c ============================================================================== --- head/sys/netinet/tcp_input.c Wed Jan 27 17:55:01 2016 (r294930) +++ head/sys/netinet/tcp_input.c Wed Jan 27 17:59:39 2016 (r294931) @@ -107,7 +107,7 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include +#include #ifdef TCPPCAP #include #endif Modified: head/sys/netinet/tcp_output.c ============================================================================== --- head/sys/netinet/tcp_output.c Wed Jan 27 17:55:01 2016 (r294930) +++ head/sys/netinet/tcp_output.c Wed Jan 27 17:59:39 2016 (r294931) @@ -77,7 +77,7 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include +#include #ifdef TCPPCAP #include #endif Modified: head/sys/netinet/tcp_stacks/fastpath.c ============================================================================== --- head/sys/netinet/tcp_stacks/fastpath.c Wed Jan 27 17:55:01 2016 (r294930) +++ head/sys/netinet/tcp_stacks/fastpath.c Wed Jan 27 17:59:39 2016 (r294931) @@ -107,7 +107,7 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include +#include #ifdef TCPDEBUG #include #endif /* TCPDEBUG */ Modified: head/sys/netinet/tcp_subr.c ============================================================================== --- head/sys/netinet/tcp_subr.c Wed Jan 27 17:55:01 2016 (r294930) +++ head/sys/netinet/tcp_subr.c Wed Jan 27 17:59:39 2016 (r294931) @@ -95,7 +95,7 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include +#include #ifdef INET6 #include #endif Modified: head/sys/netinet/tcp_timer.c ============================================================================== --- head/sys/netinet/tcp_timer.c Wed Jan 27 17:55:01 2016 (r294930) +++ head/sys/netinet/tcp_timer.c Wed Jan 27 17:59:39 2016 (r294931) @@ -68,7 +68,7 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include +#include #ifdef INET6 #include #endif Modified: head/sys/netinet/tcp_usrreq.c ============================================================================== --- head/sys/netinet/tcp_usrreq.c Wed Jan 27 17:55:01 2016 (r294930) +++ head/sys/netinet/tcp_usrreq.c Wed Jan 27 17:59:39 2016 (r294931) @@ -90,7 +90,7 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include +#include #ifdef TCPPCAP #include #endif