From owner-svn-src-head@freebsd.org Fri Sep 1 17:06:19 2017 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 060EAE1B179; Fri, 1 Sep 2017 17:06:19 +0000 (UTC) (envelope-from freebsd@pdx.rh.CN85.dnsmgr.net) Received: from pdx.rh.CN85.dnsmgr.net (br1.CN84in.dnsmgr.net [69.59.192.140]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C8B9F7FC09; Fri, 1 Sep 2017 17:06:18 +0000 (UTC) (envelope-from freebsd@pdx.rh.CN85.dnsmgr.net) Received: from pdx.rh.CN85.dnsmgr.net (localhost [127.0.0.1]) by pdx.rh.CN85.dnsmgr.net (8.13.3/8.13.3) with ESMTP id v81H6HvV000703; Fri, 1 Sep 2017 10:06:17 -0700 (PDT) (envelope-from freebsd@pdx.rh.CN85.dnsmgr.net) Received: (from freebsd@localhost) by pdx.rh.CN85.dnsmgr.net (8.13.3/8.13.3/Submit) id v81H6HvE000702; Fri, 1 Sep 2017 10:06:17 -0700 (PDT) (envelope-from freebsd) From: "Rodney W. Grimes" Message-Id: <201709011706.v81H6HvE000702@pdx.rh.CN85.dnsmgr.net> Subject: Re: svn commit: r323087 - in head/sys: amd64/conf arm64/conf i386/conf powerpc/conf riscv/conf sparc64/conf In-Reply-To: <201709011554.v81FssRG083114@repo.freebsd.org> To: Josh Paetzel Date: Fri, 1 Sep 2017 10:06:17 -0700 (PDT) CC: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Reply-To: rgrimes@freebsd.org X-Mailer: ELM [version 2.4ME+ PL121h (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII 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: Fri, 01 Sep 2017 17:06:19 -0000 [ Charset UTF-8 unsupported, converting... ] > Author: jpaetzel > Date: Fri Sep 1 15:54:53 2017 > New Revision: 323087 > URL: https://svnweb.freebsd.org/changeset/base/323087 > > Log: > Take options IPSEC out of GENERIC > > PR: 220170 > Submitted by: delphij > Reviewed by: ae, glebius > MFC after: 2 weeks > Differential Revision: D11806 > > Modified: > head/sys/amd64/conf/GENERIC > head/sys/arm64/conf/GENERIC > head/sys/i386/conf/GENERIC > head/sys/powerpc/conf/GENERIC > head/sys/riscv/conf/GENERIC > head/sys/sparc64/conf/GENERIC > > Modified: head/sys/amd64/conf/GENERIC > ============================================================================== > --- head/sys/amd64/conf/GENERIC Fri Sep 1 11:51:07 2017 (r323086) > +++ head/sys/amd64/conf/GENERIC Fri Sep 1 15:54:53 2017 (r323087) > @@ -28,7 +28,6 @@ options SCHED_ULE # ULE scheduler > options PREEMPTION # Enable kernel thread preemption > options INET # InterNETworking > options INET6 # IPv6 communications protocols > -options IPSEC # IP (v4/v6) security > options IPSEC_SUPPORT # Allow kldload of ipsec and tcpmd5 > options TCP_OFFLOAD # TCP offload > options TCP_HHOOK # hhook(9) framework for TCP > > Modified: head/sys/arm64/conf/GENERIC > ============================================================================== > --- head/sys/arm64/conf/GENERIC Fri Sep 1 11:51:07 2017 (r323086) > +++ head/sys/arm64/conf/GENERIC Fri Sep 1 15:54:53 2017 (r323087) > @@ -29,7 +29,6 @@ options PREEMPTION # Enable kernel thread preemption > options INET # InterNETworking > options INET6 # IPv6 communications protocols > options IPSEC # IP (v4/v6) security > -options IPSEC_SUPPORT # Allow kldload of ipsec and tcpmd5 Was this a miss fire??? > options TCP_HHOOK # hhook(9) framework for TCP > options TCP_OFFLOAD # TCP offload > options SCTP # Stream Control Transmission Protocol > > Modified: head/sys/i386/conf/GENERIC > ============================================================================== > --- head/sys/i386/conf/GENERIC Fri Sep 1 11:51:07 2017 (r323086) > +++ head/sys/i386/conf/GENERIC Fri Sep 1 15:54:53 2017 (r323087) > @@ -30,7 +30,6 @@ options SCHED_ULE # ULE scheduler > options PREEMPTION # Enable kernel thread preemption > options INET # InterNETworking > options INET6 # IPv6 communications protocols > -options IPSEC # IP (v4/v6) security > options IPSEC_SUPPORT # Allow kldload of ipsec and tcpmd5 > options TCP_HHOOK # hhook(9) framework for TCP > options TCP_OFFLOAD # TCP offload > > Modified: head/sys/powerpc/conf/GENERIC > ============================================================================== > --- head/sys/powerpc/conf/GENERIC Fri Sep 1 11:51:07 2017 (r323086) > +++ head/sys/powerpc/conf/GENERIC Fri Sep 1 15:54:53 2017 (r323087) > @@ -37,7 +37,6 @@ options SCHED_ULE #ULE scheduler > options PREEMPTION #Enable kernel thread preemption > options INET #InterNETworking > options INET6 #IPv6 communications protocols > -options IPSEC # IP (v4/v6) security > options IPSEC_SUPPORT # Allow kldload of ipsec and tcpmd5 > options TCP_HHOOK # hhook(9) framework for TCP > options SCTP #Stream Control Transmission Protocol > > Modified: head/sys/riscv/conf/GENERIC > ============================================================================== > --- head/sys/riscv/conf/GENERIC Fri Sep 1 11:51:07 2017 (r323086) > +++ head/sys/riscv/conf/GENERIC Fri Sep 1 15:54:53 2017 (r323087) > @@ -33,7 +33,6 @@ options PREEMPTION # Enable kernel thread preemption > options INET # InterNETworking > options INET6 # IPv6 communications protocols > options TCP_HHOOK # hhook(9) framework for TCP > -options IPSEC # IP (v4/v6) security > options IPSEC_SUPPORT # Allow kldload of ipsec and tcpmd5 > options TCP_OFFLOAD # TCP offload > options SCTP # Stream Control Transmission Protocol > > Modified: head/sys/sparc64/conf/GENERIC > ============================================================================== > --- head/sys/sparc64/conf/GENERIC Fri Sep 1 11:51:07 2017 (r323086) > +++ head/sys/sparc64/conf/GENERIC Fri Sep 1 15:54:53 2017 (r323087) > @@ -30,7 +30,6 @@ options SCHED_ULE # ULE scheduler > options PREEMPTION # Enable kernel thread preemption > options INET # InterNETworking > options INET6 # IPv6 communications protocols > -options IPSEC # IP (v4/v6) security > options IPSEC_SUPPORT # Allow kldload of ipsec and tcpmd5 > options TCP_HHOOK # hhook(9) framework for TCP > options SCTP # Stream Control Transmission Protocol > > -- Rod Grimes rgrimes@freebsd.org