From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from foss.arm.com ([217.140.101.70]:52153 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754382AbcA0Mb2 (ORCPT ); Wed, 27 Jan 2016 07:31:28 -0500 Date: Wed, 27 Jan 2016 12:31:26 +0000 From: Will Deacon To: Guenter Roeck Cc: Greg Kroah-Hartman , stable , Nicolas Dichtel Subject: Re: Build failures in v3.10-stable-queue, v3.14-stable-queue Message-ID: <20160127123125.GH2390@arm.com> References: <56A8B68F.107@roeck-us.net> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <56A8B68F.107@roeck-us.net> Sender: stable-owner@vger.kernel.org List-ID: On Wed, Jan 27, 2016 at 04:22:39AM -0800, Guenter Roeck wrote: > arm64 (v3.10): > > arch/arm64/mm/mmu.c: In function ‘paging_init’: > arch/arm64/mm/mmu.c:352:11: error: macro "dsb" passed 1 arguments, but takes just 0 > dsb(ishst); > > Culprit is 'arm64: mm: ensure that the zero page is visible to the page table walker'. > dsb() doesn't have an argument in v3.10. Copying Will Deacon for advice. You can just used dsb() instead of dsb(ishst). Will