From owner-svn-src-all@freebsd.org Thu May 17 21:19:54 2018 Return-Path: Delivered-To: svn-src-all@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 070A3EE0D3D; Thu, 17 May 2018 21:19:54 +0000 (UTC) (envelope-from nwhitehorn@freebsd.org) Received: from d.mail.sonic.net (d.mail.sonic.net [64.142.111.50]) (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 859BE76C28; Thu, 17 May 2018 21:19:53 +0000 (UTC) (envelope-from nwhitehorn@freebsd.org) Received: from helicon.physics.ucla.edu (helicon.physics.ucla.edu [169.232.156.253]) (authenticated bits=0) by d.mail.sonic.net (8.15.1/8.15.1) with ESMTPSA id w4HL8ium024908 (version=TLSv1.2 cipher=DHE-RSA-AES128-SHA bits=128 verify=NOT); Thu, 17 May 2018 14:08:45 -0700 Subject: Re: svn commit: r333765 - head/sys/conf To: Matt Macy , src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org References: <201805172104.w4HL4Kag068079@repo.freebsd.org> From: Nathan Whitehorn Message-ID: <148f3ab2-e62f-61e5-9c5f-68c97881a9ee@freebsd.org> Date: Thu, 17 May 2018 14:08:44 -0700 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.6.0 MIME-Version: 1.0 In-Reply-To: <201805172104.w4HL4Kag068079@repo.freebsd.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Content-Language: en-US X-Sonic-CAuth: UmFuZG9tSVbRDMY4uWGMnadz9sjO+Tn/7D95h/6KuC8e4OM9zF08x/RfBncQntITUQvRxaMPTFBkbZix7jN9T7p6w6hu8XjggrywPl6MmHE= X-Sonic-ID: C;cvqoexZa6BGbWcURjESG/g== M;KkEifBZa6BGbWcURjESG/g== X-Spam-Flag: No X-Sonic-Spam-Details: 0.0/5.0 by cerberusd X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.26 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: Thu, 17 May 2018 21:19:54 -0000 On 05/17/18 14:04, Matt Macy wrote: > Author: mmacy > Date: Thu May 17 21:04:19 2018 > New Revision: 333765 > URL: https://svnweb.freebsd.org/changeset/base/333765 > > Log: > powerpc: fix LINT build > > netmap currently doesn't build, take it out of LINT to prevent > hiding regressions in universe > > Reviewed by: jhibbits > Approved by: sbruno > > Modified: > head/sys/conf/makeLINT.mk > > Modified: head/sys/conf/makeLINT.mk > ============================================================================== > --- head/sys/conf/makeLINT.mk Thu May 17 21:03:36 2018 (r333764) > +++ head/sys/conf/makeLINT.mk Thu May 17 21:04:19 2018 (r333765) > @@ -53,6 +53,7 @@ LINT: ${NOTES} ${MAKELINT_SED} > .if ${TARGET} == "powerpc" > # cat is available, not sure if cp is? > cat ${.TARGET} > ${.TARGET}64 > + echo "nodevice netmap" >> ${.TARGET} > echo "machine ${TARGET} powerpc" >> ${.TARGET} > echo "machine ${TARGET} powerpc64" >> ${.TARGET}64 > .endif > The build error is that it is broken on all 32-bit architectures because of some integer/pointer type confusion, not just (32-bit) PowerPC. So, if we aren't fixing it, it at least it should also be removed from ARM, i386, mips, etc. -Nathan