From owner-svn-src-all@freebsd.org Sat Dec 30 21:02:47 2017 Return-Path: Delivered-To: svn-src-all@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 5B14DEAC919 for ; Sat, 30 Dec 2017 21:02:47 +0000 (UTC) (envelope-from pfg@FreeBSD.org) Received: from sonic302-18.consmr.mail.bf2.yahoo.com (sonic302-18.consmr.mail.bf2.yahoo.com [74.6.135.57]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 222676D0F5 for ; Sat, 30 Dec 2017 21:02:46 +0000 (UTC) (envelope-from pfg@FreeBSD.org) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s2048; t=1514667765; bh=sP0pjNPDXPnVgAl4YPQBIzNHLdah/JYlHe4MbWmTeFI=; h=Subject:To:References:From:Date:In-Reply-To:From:Subject; b=M7DM3tZSEU3JfaAN2zGoFuemxL5zFzEyYd203OzPOc6miVqn9n+JFyEl7gyev6XQ+DOivC+WVPZ/q6Pkm0+6yS7vAeAxuV0jO/8NkU1jctzartOY3iEBkrZTznUPsIDbtFhs+iAMhxSQqs06r3hgwi7Vhv8bYi2SgwNnPWJf7JWtckzY9KMR8HJa4zEYOYw6XnCm6DOxHkwTHPRgAlrzMtjN8ExYvYpTiV8SaMo5qtKuO3YcLPW1F07fIYOMIwMunKXv8qhX1QI3WJaTLx5RP/8PvjZaudAHH+uogaXMvyukhhuiURe41GHgueYqu2YtK3WeC+vaIAtB55TkXsa2UA== X-YMail-OSG: WpsnCk0VM1mWML.M6918jENEAC88JZvgYTc4GMnBw7duXwPe5FlpAw.MEhSHZnm 3q_.VwScxTIEAjt8HGz.eTiKRADLuWlV1zCbfM.Fgo0Z1CqkrTmK27zYV6MI3vuvGu6X0TuB43F3 yZBj0VZDdsQeybBFa9Et2Ip7Cwk6HQxXHnB163.v5eIr.p2vIyiyyVqGzIT3Ns3NTCh58l06L2H9 1WsF8th4geb4L1oExfIStLP75DhsLBSmbMbehp6XeVxv9wjDPZtZo0eAzC5FJkbE94QvbF.tTdeK cs4buzDPuA5udE3wHSpXnsIdU8TkByigr3AImKdpgurSlbYbTYM5_v_O8GlOxGpSTT3wonUPcRf. _Tj75TyQxQ9MWXM33H0iUu_pS2y5B1p30WimJIsWzILP6p5PACRsio32_IpaueT4w907zK7GOaTj uktPH8F8flEt6C9ZJ0l7cmgT6dQCBlnOtCnDpo2x0rMxWOdZm9x96i3ufinMYTCgowCqinMpl Received: from sonic.gate.mail.ne1.yahoo.com by sonic302.consmr.mail.bf2.yahoo.com with HTTP; Sat, 30 Dec 2017 21:02:45 +0000 Received: from smtp106.rhel.mail.bf1.yahoo.com (EHLO [192.168.0.6]) ([98.139.231.40]) by smtp412.mail.bf1.yahoo.com (JAMES SMTP Server ) with ESMTPA ID d125e02be41f05ad3de6d562475ba2c0; Sat, 30 Dec 2017 21:02:41 +0000 (UTC) Subject: Re: svn commit: r327381 - in head/sys: conf dev/ep i386/isa modules modules/elink modules/ep To: Konstantin Belousov , src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org References: <201712301142.vBUBgnXl095227@repo.freebsd.org> From: Pedro Giffuni Organization: FreeBSD Project Message-ID: Date: Sat, 30 Dec 2017 16:02:39 -0500 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.5.0 MIME-Version: 1.0 In-Reply-To: <201712301142.vBUBgnXl095227@repo.freebsd.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Content-Language: en-US X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 30 Dec 2017 21:02:47 -0000 Hi; On 30/12/2017 06:42, Konstantin Belousov wrote: > Author: kib > Date: Sat Dec 30 11:42:49 2017 > New Revision: 327381 > URL: https://svnweb.freebsd.org/changeset/base/327381 > > Log: > Move i386/isa/elink.[hc] to dev/ep. > > The ep(4) driver is the only consumer of the two functions from > elink.c. I removed the standalone module as well, and most likely, > the module metadata is not needed anywhere, but this is for later > cleanup. > > Discussed with: imp, jhb > Sponsored by: The FreeBSD Foundation For the record, I find this change very cool. It makes the code more modular and the license for those two files also matches the license in the ep driver. Thanks! Pedro.