From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 61129C4167B for ; Tue, 28 Nov 2023 21:17:19 +0000 (UTC) Received: from list by lists.xenproject.org with outflank-mailman.643483.1003770 (Exim 4.92) (envelope-from ) id 1r85S0-0000Md-10; Tue, 28 Nov 2023 21:17:00 +0000 X-Outflank-Mailman: Message body and most headers restored to incoming version Received: by outflank-mailman (output) from mailman id 643483.1003770; Tue, 28 Nov 2023 21:17:00 +0000 Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1r85Rz-0000MW-Ul; Tue, 28 Nov 2023 21:16:59 +0000 Received: by outflank-mailman (input) for mailman id 643483; Tue, 28 Nov 2023 21:16:58 +0000 Received: from se1-gles-flk1-in.inumbo.com ([94.247.172.50] helo=se1-gles-flk1.inumbo.com) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1r85Ry-0000MN-82 for xen-devel@lists.xenproject.org; Tue, 28 Nov 2023 21:16:58 +0000 Received: from raptorengineering.com (mail.raptorengineering.com [23.155.224.40]) by se1-gles-flk1.inumbo.com (Halon) with ESMTPS id 7537fa01-8e33-11ee-9b0e-b553b5be7939; Tue, 28 Nov 2023 22:16:56 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by mail.rptsys.com (Postfix) with ESMTP id 1CE24828532E; Tue, 28 Nov 2023 15:16:55 -0600 (CST) Received: from mail.rptsys.com ([127.0.0.1]) by localhost (vali.starlink.edu [127.0.0.1]) (amavisd-new, port 10032) with ESMTP id xkMzlCIIqkG2; Tue, 28 Nov 2023 15:16:54 -0600 (CST) Received: from localhost (localhost [127.0.0.1]) by mail.rptsys.com (Postfix) with ESMTP id 35AE5828562B; Tue, 28 Nov 2023 15:16:54 -0600 (CST) Received: from mail.rptsys.com ([127.0.0.1]) by localhost (vali.starlink.edu [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id JfWTIagrxU0r; Tue, 28 Nov 2023 15:16:54 -0600 (CST) Received: from [10.11.0.3] (5.edge.rptsys.com [23.155.224.38]) by mail.rptsys.com (Postfix) with ESMTPSA id 9BAC3828532E; Tue, 28 Nov 2023 15:16:53 -0600 (CST) X-BeenThere: xen-devel@lists.xenproject.org List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Errors-To: xen-devel-bounces@lists.xenproject.org Precedence: list Sender: "Xen-devel" X-Inumbo-ID: 7537fa01-8e33-11ee-9b0e-b553b5be7939 DKIM-Filter: OpenDKIM Filter v2.10.3 mail.rptsys.com 35AE5828562B DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=raptorengineering.com; s=B8E824E6-0BE2-11E6-931D-288C65937AAD; t=1701206214; bh=hr5q9Yzx07FYVexmxmt9QkDbS1amPngm1+ZnEtLtu/E=; h=Message-ID:Date:MIME-Version:To:From; b=ltGKFOThiBT2NBk8WMKcLa7Ok/3kSEy8mlvcbZNJk4zmvsEl7czbQprhabKR4ZIsT 0SM4Vc/oNthOnTRIgL0kSRyJGeA3VUPhYAVspoD7Z8YK+/RndXoJZBisw9LC3jGNEf Z20U01zHiZBqBCTs5Hjyiilzu7kjD5wGzFO9fBjc= X-Virus-Scanned: amavisd-new at rptsys.com Message-ID: Date: Tue, 28 Nov 2023 15:16:52 -0600 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH v4 01/14] xen/asm-generic: introduce stub header paging.h Content-Language: en-US To: Oleksii Kurochko , xen-devel@lists.xenproject.org Cc: Stefano Stabellini , Julien Grall , Bertrand Marquis , Michal Orzel , Volodymyr Babchuk , Andrew Cooper , George Dunlap , Jan Beulich , Wei Liu , Julien Grall References: <78608aaa8108f1dd56758c098f64534580c54cc3.1701093907.git.oleksii.kurochko@gmail.com> From: Shawn Anastasio In-Reply-To: <78608aaa8108f1dd56758c098f64534580c54cc3.1701093907.git.oleksii.kurochko@gmail.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Hi Oleksii, On 11/27/23 8:13 AM, Oleksii Kurochko wrote: > The patch introduces generic paging.h header for Arm, PPC and > RISC-V. > > All mentioned above architectures use hardware virt extensions > and hardware pagetable extensions thereby it makes sense to set > paging_mode_translate and paging_mode_external by default. > > Also in this patch Arm and PPC architectures are switched to > generic paging.h header. Acked-by: Shawn Anastasio Thanks, Shawn