Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752655AbaBCLNs (ORCPT ); Mon, 3 Feb 2014 06:13:48 -0500 Received: from smtp.citrix.com ([66.165.176.89]:20110 "EHLO SMTP.CITRIX.COM" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752415AbaBCLNp (ORCPT ); Mon, 3 Feb 2014 06:13:45 -0500 X-IronPort-AV: E=Sophos;i="4.95,771,1384300800"; d="scan'208";a="99161694" Date: Mon, 3 Feb 2014 11:13:35 +0000 From: Stefano Stabellini X-X-Sender: sstabellini@kaball.uk.xensource.com To: David Vrabel CC: Zoltan Kiss , Julien Grall , Stefano Stabellini , , , , , , Subject: Re: [Xen-devel] [PATCH v6] xen/grant-table: Avoid m2p_override during mapping In-Reply-To: <52EF7618.7030402@citrix.com> Message-ID: References: <1390512224-27296-1-git-send-email-zoltan.kiss@citrix.com> <52EE1E26.2040308@linaro.org> <52EE93F0.1020508@citrix.com> <52EF7618.7030402@citrix.com> User-Agent: Alpine 2.02 (DEB 1266 2009-07-14) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="1342847746-1122221688-1391425897=:4373" Content-ID: X-DLP: MIA1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org --1342847746-1122221688-1391425897=:4373 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: QUOTED-PRINTABLE Content-ID: On Mon, 3 Feb 2014, David Vrabel wrote: > On 02/02/14 18:52, Zoltan Kiss wrote: > > On 02/02/14 11:29, Julien Grall wrote: > >> Hello, > >> > >> This patch is breaking Linux compilation on ARM: > >> > >> drivers/xen/grant-table.c: In function =E2=80=98__gnttab_map_refs=E2= =80=99: > >> drivers/xen/grant-table.c:989:3: error: implicit declaration of > >> function =E2=80=98FOREIGN_FRAME=E2=80=99 [-Werror=3Dimplicit-function-= declaration] > >> if (unlikely(!set_phys_to_machine(pfn, FOREIGN_FRAME(mfn)))) { > >> ^ > >> drivers/xen/grant-table.c: In function =E2=80=98__gnttab_unmap_refs=E2= =80=99: > >> drivers/xen/grant-table.c:1054:3: error: implicit declaration of > >> function =E2=80=98get_phys_to_machine=E2=80=99 [-Werror=3Dimplicit-fun= ction-declaration] > >> mfn =3D get_phys_to_machine(pfn); > >> ^ > >> drivers/xen/grant-table.c:1055:43: error: =E2=80=98FOREIGN_FRAME_BIT= =E2=80=99 > >> undeclared (first use in this function) > >> if (mfn =3D=3D INVALID_P2M_ENTRY || !(mfn & FOREIGN_FRAME_BIT)) { > >> ^ > >> drivers/xen/grant-table.c:1055:43: note: each undeclared identifier is > >> reported only once for each function it appears in > >> drivers/xen/grant-table.c:1068:9: error: too many arguments to > >> function =E2=80=98m2p_remove_override=E2=80=99 > >> mfn); > >> ^ > >> In file included from include/xen/page.h:4:0, > >> from drivers/xen/grant-table.c:48: > >> /local/home/julien/works/midway/linux/arch/arm/include/asm/xen/page.h:= 106:19: > >> note: declared here > >> static inline int m2p_remove_override(struct page *page, bool > >> clear_pte) > >> ^ > >> cc1: some warnings being treated as errors > >=20 > > Hi, > >=20 > > That's bad indeed. I think the best solution is to put those parts > > behind an #ifdef x86. The ones moved from x86/p2m.c to grant-table.c. > > David, Stefano, what do you think? >=20 > I don't think we want (more) #ifdef CONFIG_X86 in grant-table.c and the > arch-specific bits will have to factored out into their own functions > with suitable stubs provided for ARM. We certainly don't want more ifdefs like that. > But, this patch went in late and it's clearly not ready. So I think it > should be reverted and we should aim to get it sorted out for 3.15. >=20 > Konrad/Stefano (if you agree) please revert > 08ece5bb2312b4510b161a6ef6682f37f4eac8a1 and send a pull request. Unfortunately I have to agree: fixing the prototype of m2p_remove_override and replacing get_phys_to_machine with pfn_to_mfn is easy. However FOREIGN_FRAME is an x86-ism and I don't feel confortable with adding yet another #define under arch/arm/xen just to deal with x86 stuff that spill on common code. Sorry for not spotting this earlier. > Konrad, I also think you should look at adding an ARM build to your test > system (I thought you had this already). Let's talk about how to set it up offline. --1342847746-1122221688-1391425897=:4373-- -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/