From owner-freebsd-current@freebsd.org Tue Aug 2 01:49:52 2016 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 65D4BBAA9BA for ; Tue, 2 Aug 2016 01:49:52 +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 3A6B3181B; Tue, 2 Aug 2016 01:49:52 +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-type :content-type:mime-version:user-agent:date:date:message-id :subject:subject:from:from; s=201508; t=1470102564; bh=Ej0ECmiPT 4hTpQFryzgVHRGsEVr+pFsE+wqiiiSMXxg=; b=dv8P5Rd55pBbPCk4Xq8ngqOU7 07HmwuBSCOdIeN5TGniPM9bk9PkOE4Pr3Wo+2WawPSQauw+/qtsPhBIMjIDLtJPO CYVgKbqCYiIRiFUqb36vs8MV5mXEe4d+oS0WCOb3pbMyJ8EG2ELUJQIiWIhhJ0li r6UcgUqDCUOHRPk/Rg= Received: from toshi.auburn.protected-networks.net (gw.auburn.protected-networks.net [192.168.1.1]) (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 D864B8EB1; Mon, 1 Aug 2016 21:49:24 -0400 (EDT) To: mjg@freebsd.org Cc: freebsd-current From: Michael Butler Subject: SVN r303643 breaks non-SMP compilation Message-ID: <6a9f68a7-8b1c-92cd-1409-fe574602a005@protected-networks.net> Date: Mon, 1 Aug 2016 21:49:03 -0400 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.22 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: Tue, 02 Aug 2016 01:49:52 -0000 In the non-SMP case, ADAPTIVE_MUTEXES is not defined and a subsequent reference to mtx_delay causes compilation of kern_mutex.c to fail because KDTRACE_HOOKS may be, imb