From owner-freebsd-current@freebsd.org Thu Aug 17 00:37: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 B8178DDDE81 for ; Thu, 17 Aug 2017 00:37: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 8A65A76C18; Thu, 17 Aug 2017 00:37:34 +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=1502930244; bh=5nMPCQ7AlAIRrAkv8lwH+fQLeaAnSbIOoQ58O+b oapY=; b=mPV6d1VXgq9Ixh6khvVLoEXRGsi6vG76uZ5vahn27ibuPblM7pk6o0m s4r8FYbeh5khK4wIs9U9VtNcZQ8n/saBaF9KTZToK3VIPsNJFdIuHlXFEWdevKsE UCZ1c80p45YwCnPvvrN0OH7xOiAu6gKb9X9EMRzMMVq8ffoeisLY= 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 AD3BD39F49; Wed, 16 Aug 2017 20:37:24 -0400 (EDT) To: freebsd-current Cc: cem@freebsd.org From: Michael Butler Subject: SVN r322588 breaks non-SMP kernel build Message-ID: Date: Wed, 16 Aug 2017 20:37:23 -0400 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1 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: Thu, 17 Aug 2017 00:37:34 -0000 Building on an i386 without SMP after SVN r322588 yields this breakage: Building /usr/obj/usr/src/sys/SARAH/intr_machdep.o --- intr_machdep.o --- /usr/src/sys/x86/x86/intr_machdep.c:78:23: warning: variable 'interrupt_sorted' is not needed and will not be emitted [-Wunneeded-internal-declaration] static struct intsrc *interrupt_sorted[NUM_IO_INTS]; ^ /usr/src/sys/x86/x86/intr_machdep.c:83:28: error: unused variable 'intrbalance_task' [-Werror,-Wunused-variable] static struct timeout_task intrbalance_task; ^ 1 warning and 1 error generated. *** [intr_machdep.o] Error code 1 imb