From owner-svn-src-head@freebsd.org Sat May 19 12:30:20 2018 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D66C3EAC6EE; Sat, 19 May 2018 12:30:19 +0000 (UTC) (envelope-from mmacy@freebsd.org) Received: from smtp.freebsd.org (smtp.freebsd.org [96.47.72.83]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 754E76DC3C; Sat, 19 May 2018 12:30:19 +0000 (UTC) (envelope-from mmacy@freebsd.org) Received: from mail-io0-f174.google.com (mail-io0-f174.google.com [209.85.223.174]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) (Authenticated sender: mmacy) by smtp.freebsd.org (Postfix) with ESMTPSA id 3265923944; Sat, 19 May 2018 12:30:19 +0000 (UTC) (envelope-from mmacy@freebsd.org) Received: by mail-io0-f174.google.com with SMTP id e78-v6so9356613iod.0; Sat, 19 May 2018 05:30:19 -0700 (PDT) X-Gm-Message-State: ALKqPwcr6Js8764jKEoIy8LKzBxGSkCZR25OqXgGVnWSkEhEsags/ixd q+CBo7PiKbi/nhDKL818vjmgavL8qdvfJaUUI90= X-Google-Smtp-Source: AB8JxZp7+nmogJqoUPmCyYBMEIokT4SHaDErDtY0lg2kAS828sWb1bZHbokSvkLZloGPmhY7vssTrdXFnfKqLtdalyY= X-Received: by 2002:a6b:a712:: with SMTP id q18-v6mr14054239ioe.237.1526733018446; Sat, 19 May 2018 05:30:18 -0700 (PDT) MIME-Version: 1.0 References: <201805190004.w4J0419B099140@repo.freebsd.org> In-Reply-To: From: Matthew Macy Date: Sat, 19 May 2018 05:30:07 -0700 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: svn commit: r333819 - in head/sys: conf modules/blake2 modules/crypto modules/drm2/i915kms modules/ipfilter To: Ed Maste Cc: src-committers , svn-src-all@freebsd.org, svn-src-head@freebsd.org Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.26 X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.26 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: Sat, 19 May 2018 12:30:20 -0000 Oops I=E2=80=99ll add a separate define for that On Sat, May 19, 2018 at 04:27 Ed Maste wrote: > On 18 May 2018 at 20:04, Matt Macy wrote: > > Author: mmacy > > Date: Sat May 19 00:04:01 2018 > > New Revision: 333819 > > URL: https://svnweb.freebsd.org/changeset/base/333819 > > > > Log: > > Silence non-actionable warnings in vendor code > ... > > Modified: head/sys/conf/kern.mk > > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > > --- head/sys/conf/kern.mk Fri May 18 23:42:08 2018 > (r333818) > > +++ head/sys/conf/kern.mk Sat May 19 00:04:01 2018 > (r333819) > > @@ -18,12 +18,13 @@ CWARNFLAGS?=3D -Wall -Wredundant-decls > -Wnested-externs > > # a false positive. > > .if ${COMPILER_TYPE} =3D=3D "clang" > > NO_WCONSTANT_CONVERSION=3D -Wno-error-constant-conversion > > -NO_WSHIFT_COUNT_NEGATIVE=3D -Wno-error-shift-count-negative > > -NO_WSHIFT_COUNT_OVERFLOW=3D -Wno-error-shift-count-overflow > > -NO_WSELF_ASSIGN=3D -Wno-error-self-assign > > +NO_WSHIFT_COUNT_NEGATIVE=3D -Wno-shift-count-negative > > +NO_WSHIFT_COUNT_OVERFLOW=3D -Wno-shift-count-overflow > > +NO_WSELF_ASSIGN=3D -Wno-self-assign > > This silences the warning across the tree, not just vendor code. >