Re: [PATCH v9 3/6] xen: Make the maximum number of altp2m views configurable for x86

2025-07-16 Thread Jan Beulich
On 15.07.2025 10:31, Petr Beneš wrote: > --- a/xen/arch/x86/hvm/hvm.c > +++ b/xen/arch/x86/hvm/hvm.c > @@ -1873,6 +1873,7 @@ int hvm_hap_nested_page_fault(paddr_t gpa, unsigned > long gla, >P2M_ALLOC | (npfec.write_access ? P2M_UNSHARE > : 0), >

[PATCH v9 3/6] xen: Make the maximum number of altp2m views configurable for x86

2025-07-15 Thread Petr Beneš
From: Petr Beneš This commit introduces the ability to configure the maximum number of altp2m views for the domain during its creation. Previously, the limits were hardcoded to a maximum of 10. This change allows for greater flexibility in environments that require more or fewer altp2m views. Th