From owner-svn-src-head@freebsd.org Thu Sep 15 13:46:35 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 DB6C8BDBE8E; Thu, 15 Sep 2016 13:46:35 +0000 (UTC) (envelope-from kevlo@ns.kevlo.org) Received: from ns.kevlo.org (220-135-115-6.HINET-IP.hinet.net [220.135.115.6]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "ns.kevlo.org", Issuer "ns.kevlo.org" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 7FC25957; Thu, 15 Sep 2016 13:46:34 +0000 (UTC) (envelope-from kevlo@ns.kevlo.org) Received: from ns.kevlo.org (localhost [127.0.0.1]) by ns.kevlo.org (8.15.2/8.15.2) with ESMTPS id u8FDkIki009007 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Thu, 15 Sep 2016 21:46:19 +0800 (CST) (envelope-from kevlo@ns.kevlo.org) Received: (from kevlo@localhost) by ns.kevlo.org (8.15.2/8.15.2/Submit) id u8FDkILK009006; Thu, 15 Sep 2016 21:46:18 +0800 (CST) (envelope-from kevlo) Date: Thu, 15 Sep 2016 21:46:18 +0800 From: Kevin Lo To: "Ngie Cooper (yaneurabeya)" Cc: src-committers , svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r305824 - in head/sys: contrib/ipfilter/netinet kern net netinet netinet6 netipsec sys Message-ID: <20160915134618.GA8952@ns.kevlo.org> References: <201609150741.u8F7fmcM059138@repo.freebsd.org> <325364AF-58AC-4C30-8EFF-4B793E18779D@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <325364AF-58AC-4C30-8EFF-4B793E18779D@gmail.com> User-Agent: Mutt/1.5.24 (2015-08-30) X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.23 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: Thu, 15 Sep 2016 13:46:36 -0000 On Thu, Sep 15, 2016 at 12:58:33AM -0700, Ngie Cooper (yaneurabeya) wrote: > > > On Sep 15, 2016, at 00:41, Kevin Lo wrote: > > > > Author: kevlo > > Date: Thu Sep 15 07:41:48 2016 > > New Revision: 305824 > > URL: https://svnweb.freebsd.org/changeset/base/305824 > > > > Log: > > Remove the 4.3BSD compatible macro m_copy(), use m_copym() instead. > > > > Reviewed by: gnn > > Differential Revision: https://reviews.freebsd.org/D7878 > > > > Modified: > > head/sys/contrib/ipfilter/netinet/fil.c > > head/sys/contrib/ipfilter/netinet/ip_compat.h > > head/sys/contrib/ipfilter/netinet/ip_fil_freebsd.c > > head/sys/kern/uipc_socket.c > > head/sys/net/if_arcsubr.c > > head/sys/net/if_fddisubr.c > > head/sys/net/if_iso88025subr.c > > head/sys/net/raw_usrreq.c > > head/sys/netinet/ip_input.c > > head/sys/netinet/ip_mroute.c > > head/sys/netinet/raw_ip.c > > head/sys/netinet/tcp_output.c > > head/sys/netinet/udp_usrreq.c > > head/sys/netinet6/icmp6.c > > head/sys/netinet6/ip6_forward.c > > head/sys/netinet6/ip6_mroute.c > > head/sys/netinet6/ip6_output.c > > head/sys/netinet6/raw_ip6.c > > head/sys/netinet6/udp6_usrreq.c > > head/sys/netipsec/keysock.c > > head/sys/sys/mbuf.h > > Bump __FreeBSD_version for the change (just in case something’s using the #define elsewhere)? Bumped(r305833), thanks. > Thanks! > -Ngie