[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v1 02/29] xen/asm-generic: introduce stub header paging.h
- To: Oleksii Kurochko <oleksii.kurochko@xxxxxxxxx>
- From: Jan Beulich <jbeulich@xxxxxxxx>
- Date: Thu, 19 Oct 2023 11:05:34 +0200
- Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=suse.com; dmarc=pass action=none header.from=suse.com; dkim=pass header.d=suse.com; arc=none
- Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=oUKz6YViOKcxiPSWSVo90ESDt9sgAVkTjfsUd1/DHfA=; b=VTRTGM9JtsmY8CDFHknA43CPunTFiB6+O96vsOXJ7+h8CnoJghnGXQ1jKNnm+eNWZJYZjVbce6bYoLg9nFS95OdGlcOIBQbdkFf0kcsIqVXSUyrLrO8eVBhlOERL8swmHmLjvgAX+Clc6zminOWDTNEgXnk+DkrT6J95PnsxTyKCVugcLgunLf53vYiHxdCvA3cKMs9q0PFbjZSntyq4D6F9x15WXhkgvBR4r46uVkP5InfLGpmNskD2JOGvPunfxeVWeL0FnYEhaEor3FQfxQhbJCFuhw3ji83inR5Ez09B2V7mvxdFzzkdlsiBMmNFaCao8XJEIacYDN7bVu9ShQ==
- Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=Ia2HBhunl4Yxj7J2kIkpANnNjTCd+xb+7dohKGdmzl/CgWud4oxav3XfMkyBMBQogc0ULBjNBV5Z1n5pArZTH/DYmvRpi3VpM5F7l8BZAst79+ssUc1YmIlo7zJJk5j/FVOCqLS+HCJOSYAcuxqy9eaLSm1YiLMlbw+0eceNiaBMc/x23Ey8p0nmVohW9nDNrpsZqRQ8+j04yv8Ll5j4GwV0hBvQhr62D5S8vCYemT+iwDUsEMvNSs4vpw9jMFhc9ZWTCPEdUPNwRYxKaj6FZjEhS8XNryNuVlsVHkL5y+ZMzaIVTPOp/9F3ys1kadqO/YpmkABj0aNHBjTzBxwy/A==
- Authentication-results: dkim=none (message not signed) header.d=none;dmarc=none action=none header.from=suse.com;
- Cc: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>, George Dunlap <george.dunlap@xxxxxxxxxx>, Julien Grall <julien@xxxxxxx>, Stefano Stabellini <sstabellini@xxxxxxxxxx>, Wei Liu <wl@xxxxxxx>, xen-devel@xxxxxxxxxxxxxxxxxxxx
- Delivery-date: Thu, 19 Oct 2023 09:05:41 +0000
- List-id: Xen developer discussion <xen-devel.lists.xenproject.org>
On 14.09.2023 16:56, Oleksii Kurochko wrote:
> The patch introduces stub header needed for full Xen build.
>
> Signed-off-by: Oleksii Kurochko <oleksii.kurochko@xxxxxxxxx>
> ---
> xen/include/asm-generic/paging.h | 17 +++++++++++++++++
> 1 file changed, 17 insertions(+)
> create mode 100644 xen/include/asm-generic/paging.h
>
> diff --git a/xen/include/asm-generic/paging.h
> b/xen/include/asm-generic/paging.h
> new file mode 100644
> index 0000000000..2aab63b536
> --- /dev/null
> +++ b/xen/include/asm-generic/paging.h
> @@ -0,0 +1,17 @@
> +/* SPDX-License-Identifier: GPL-2.0-only */
> +#ifndef __ASM_GENERIC_PAGING_H__
> +#define __ASM_GENERIC_PAGING_H__
> +
> +#define paging_mode_translate(d) (1)
> +#define paging_mode_external(d) (1)
> +
> +#endif /* __ASM_GENERIC_PAGING_H__ */
Looks okay, but wants accompanying by dropping (i.e. effectively moving)
Arm's respective header. The description than also wants adjusting (it
wasn't quite suitable anyway, as there's missing context).
Jan
|