From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751091AbdGZH2Z (ORCPT ); Wed, 26 Jul 2017 03:28:25 -0400 Received: from mx2.suse.de ([195.135.220.15]:55805 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1750813AbdGZH2Y (ORCPT ); Wed, 26 Jul 2017 03:28:24 -0400 Subject: Re: [PATCHv2 08/10] x86/mm: Replace compile-time checks for 5-level with runtime-time To: "Kirill A. Shutemov" Cc: Linus Torvalds , Andrew Morton , x86@kernel.org, Thomas Gleixner , Ingo Molnar , "H. Peter Anvin" , Andi Kleen , Dave Hansen , Andy Lutomirski , Michal Hocko , linux-mm@kvack.org, linux-kernel@vger.kernel.org References: <20170718141517.52202-1-kirill.shutemov@linux.intel.com> <20170718141517.52202-9-kirill.shutemov@linux.intel.com> <6841c4f3-6794-f0ac-9af9-0ceb56e49653@suse.com> <20170725090538.26sbgb4npkztsqj3@black.fi.intel.com> From: Juergen Gross Message-ID: <39cb1e36-f94e-32ea-c94a-2daddcbf3408@suse.com> Date: Wed, 26 Jul 2017 09:28:16 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1 MIME-Version: 1.0 In-Reply-To: <20170725090538.26sbgb4npkztsqj3@black.fi.intel.com> Content-Type: text/plain; charset=utf-8 Content-Language: de-DE Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 25/07/17 11:05, Kirill A. Shutemov wrote: > On Tue, Jul 18, 2017 at 04:24:06PM +0200, Juergen Gross wrote: >> Xen PV guests will never run with 5-level-paging enabled. So I guess you >> can drop the complete if (IS_ENABLED(CONFIG_X86_5LEVEL)) {} block. > > There is more code to drop from mmu_pv.c. > > But while there, I thought if with boot-time 5-level paging switching we > can allow kernel to compile with XEN_PV and XEN_PVH, so the kernel image > can be used in these XEN modes with 4-level paging. > > Could you check if with the patch below we can boot in XEN_PV and XEN_PVH > modes? We can't. I have used your branch: git://git.kernel.org/pub/scm/linux/kernel/git/kas/linux.git la57/boot-switching/v2 with this patch applied on top. Doesn't boot PV guest with X86_5LEVEL configured (very early crash). Doesn't build with X86_5LEVEL not configured: AS arch/x86/kernel/head_64.o /home/gross/linux/arch/x86/kernel/head_64.S: Assembler messages: /home/gross/linux/arch/x86/kernel/head_64.S:350: Error: attempt to move .org backwards /home/gross/linux/arch/x86/kernel/head_64.S:352: Error: attempt to move .org backwards /home/gross/linux/arch/x86/kernel/head_64.S:43: Error: invalid operands (*ABS* and *UND* sections) for `>>' /home/gross/linux/arch/x86/kernel/head_64.S:44: Error: invalid operands (*ABS* and *UND* sections) for `>>' /home/gross/linux/scripts/Makefile.build:403: recipe for target 'arch/x86/kernel/head_64.o' failed make[7]: *** [arch/x86/kernel/head_64.o] Error 1 Juergen