From owner-cvs-all@FreeBSD.ORG Mon Mar 26 08:59:03 2007 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C556C16A400; Mon, 26 Mar 2007 08:59:03 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id B594E13C465; Mon, 26 Mar 2007 08:59:03 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l2Q8x3aO034008; Mon, 26 Mar 2007 08:59:03 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l2Q8x3U5034007; Mon, 26 Mar 2007 08:59:03 GMT (envelope-from rwatson) Message-Id: <200703260859.l2Q8x3U5034007@repoman.freebsd.org> From: Robert Watson Date: Mon, 26 Mar 2007 08:59:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/conf files src/sys/kern uipc_sockbuf.c uipc_socket.c uipc_socket2.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Mar 2007 08:59:03 -0000 rwatson 2007-03-26 08:59:03 UTC FreeBSD src repository Modified files: sys/conf files sys/kern uipc_sockbuf.c uipc_socket.c Removed files: sys/kern uipc_socket2.c Log: Complete removal of uipc_socket2.c by moving the last few functions to other C files: - Move sbcreatecontrol() and sbtoxsockbuf() to uipc_sockbuf.c. While sbcreatecontrol() is really an mbuf allocation routine, it does its work with awareness of the layout of socket buffer memory. - Move pru_*() protocol switch stubs to uipc_socket.c where the non-stub versions of several of these functions live. Likewise, move socket state transition calls (soisconnecting(), etc) to uipc_socket.c. Moveo sodupsockaddr() and sotoxsocket(). Revision Changes Path 1.1188 +0 -1 src/sys/conf/files 1.167 +52 -0 src/sys/kern/uipc_sockbuf.c 1.296 +298 -0 src/sys/kern/uipc_socket.c 1.163 +0 -397 src/sys/kern/uipc_socket2.c (dead)