From owner-svn-src-all@freebsd.org Wed Jun 3 18:56:17 2020 Return-Path: Delivered-To: svn-src-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 922BD2F0668; Wed, 3 Jun 2020 18:56:17 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: from smtp.freebsd.org (smtp.freebsd.org [IPv6:2610:1c1:1:606c::24b:4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49cdRP2R4Tz4R0s; Wed, 3 Jun 2020 18:56:17 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: from mail-qv1-f52.google.com (mail-qv1-f52.google.com [209.85.219.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) (Authenticated sender: kevans) by smtp.freebsd.org (Postfix) with ESMTPSA id 47337280AC; Wed, 3 Jun 2020 18:56:17 +0000 (UTC) (envelope-from kevans@freebsd.org) Received: by mail-qv1-f52.google.com with SMTP id e2so1656176qvw.7; Wed, 03 Jun 2020 11:56:17 -0700 (PDT) X-Gm-Message-State: AOAM532E+sNuU1aj2ERhIFRTWVJ4EPiWavMZ6XFjR9ccgtAk4TJj4zd9 a62UdOes3ifqS5u+DKMqNbtMTEodiZ8h8pOcoAQ= X-Google-Smtp-Source: ABdhPJw24i4Bi631kQEbo8IjurbKHHsO8pxOFjgfP7YijBneu05SFFkYS05j+o8dZXyE5E4Mw3Qf6d9aa+VjheXDDd4= X-Received: by 2002:a0c:ba22:: with SMTP id w34mr1255650qvf.129.1591210576723; Wed, 03 Jun 2020 11:56:16 -0700 (PDT) MIME-Version: 1.0 References: <202006031842.053IgSsa098597@repo.freebsd.org> In-Reply-To: <202006031842.053IgSsa098597@repo.freebsd.org> From: Kyle Evans Date: Wed, 3 Jun 2020 13:56:03 -0500 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: svn commit: r361764 - head/sys/modules/tcp To: John Baldwin Cc: src-committers , svn-src-all , svn-src-head Content-Type: text/plain; charset="UTF-8" X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.33 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: Wed, 03 Jun 2020 18:56:17 -0000 On Wed, Jun 3, 2020 at 1:42 PM John Baldwin wrote: > > Author: jhb > Date: Wed Jun 3 18:42:28 2020 > New Revision: 361764 > URL: https://svnweb.freebsd.org/changeset/base/361764 > > Log: > Revise r361712 to disable tcpmd5.ko for 'options TCP_SIGNATURE' > > Modified: > head/sys/modules/tcp/Makefile > > Modified: head/sys/modules/tcp/Makefile > ============================================================================== > --- head/sys/modules/tcp/Makefile Wed Jun 3 18:29:32 2020 (r361763) > +++ head/sys/modules/tcp/Makefile Wed Jun 3 18:42:28 2020 (r361764) > @@ -16,7 +16,7 @@ _tcp_rack= rack > > .if (${MK_INET_SUPPORT} != "no" || ${MK_INET6_SUPPORT} != "no") || \ > defined(ALL_MODULES) > -.if ${KERN_OPTS:MIPSEC_SUPPORT} && !${KERN_OPTS:MIPSEC} > +.if ${KERN_OPTS:MIPSEC_SUPPORT} && !${KERN_OPTS:MTCP_SIGNATURE} > _tcpmd5= tcpmd5 > .endif > .endif Thanks! =-)