From owner-freebsd-current@freebsd.org Fri Sep 8 01:00:34 2017 Return-Path: Delivered-To: freebsd-current@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 B37FAE1C61C for ; Fri, 8 Sep 2017 01:00:34 +0000 (UTC) (envelope-from imb@protected-networks.net) Received: from mail.protected-networks.net (mail.protected-networks.net [IPv6:2001:470:8d59:1::8]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.protected-networks.net", Issuer "Protected Networks CA" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id EC8813BF1; Fri, 8 Sep 2017 01:00:33 +0000 (UTC) (envelope-from imb@protected-networks.net) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d= protected-networks.net; h=content-transfer-encoding :content-language:content-type:content-type:mime-version :user-agent:date:date:message-id:subject:subject:from:from; s= 201508; t=1504832418; bh=4sOF/7kTFNgnkSVuY8w8Gpmno6hJ06clF6hDHFT A3bg=; b=Q/ZBEXua6UBOIEBxW/xidLYfW8qTncxiOi3mTG2IW8wDgjvt5c77LBm U/KtRG6SnWX8GnMY2J/wHwiBBNZG3H1zr0Ys7DzEAcP7aEgTzupGTlkSTRgpHQih 2+6XKFl6nUpuUZN+aBQhPA4DbLd26nh8FzIop49V6soXOVY9vvx0= Received: from toshi.auburn.protected-networks.net (toshi.auburn.protected-networks.net [192.168.1.10]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) (Authenticated sender: imb@mail.protected-networks.net) by mail.protected-networks.net (Postfix) with ESMTPSA id ABAD51648; Thu, 7 Sep 2017 21:00:18 -0400 (EDT) To: freebsd-current , cem@freebsd.org From: Michael Butler Subject: SVN r323289 breaks i386 kernel compilation Message-ID: <74e90bcf-a289-02cf-2fed-ce2b302eab33@protected-networks.net> Date: Thu, 7 Sep 2017 21:00:17 -0400 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.3.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Sep 2017 01:00:35 -0000 On i386, this revision breaks compilation as follows: Building /usr/obj/usr/src/sys/SARAH/mca.o --- mca.o --- /usr/src/sys/x86/x86/mca.c:985:54: error: format specifies type 'unsigned long' but the argument has type 'uint64_t' (aka 'unsigned long long') [-Werror,-Wformat] printf("%s: 0x%lx: !valid | !present\n", __func__, misc); ~~~ ^~~~ %llx /usr/src/sys/x86/x86/mca.c:991:43: error: format specifies type 'unsigned long' but the argument has type 'uint64_t' (aka 'unsigned long long') [-Werror,-Wformat] printf("%s: 0x%lx: locked\n", __func__, misc); ~~~ ^~~~ %llx /usr/src/sys/x86/x86/mca.c:1000:58: error: format specifies type 'unsigned long' but the argument has type 'uint64_t' (aka 'unsigned long long') [-Werror,-Wformat] printf("%s: 0x%lx: count already enabled\n", __func__, misc); ~~~ ^~~~ %llx 3 errors generated. *** [mca.o] Error code 1