Re: [PATCH v2 1/4] xen: arm: Add a new helper update_boot_mapping()

2024-08-12 Thread Ayan Kumar Halder
On 09/08/2024 13:01, Michal Orzel wrote: Hi Ayan, Hi Michal, On 08/08/2024 14:09, Ayan Kumar Halder wrote: update_boot_mapping() invokes update_identity_mapping() for the MMU specific code. Later when the MPU code is added, update_boot_mapping() would invoke the equivalent. The common code

Re: [PATCH v2 1/4] xen: arm: Add a new helper update_boot_mapping()

2024-08-09 Thread Michal Orzel
Hi Ayan, On 08/08/2024 14:09, Ayan Kumar Halder wrote: > update_boot_mapping() invokes update_identity_mapping() for the MMU specific > code. > Later when the MPU code is added, update_boot_mapping() would invoke the > equivalent. > > The common code now invokes update_boot_mapping() instead of >

[PATCH v2 1/4] xen: arm: Add a new helper update_boot_mapping()

2024-08-08 Thread Ayan Kumar Halder
update_boot_mapping() invokes update_identity_mapping() for the MMU specific code. Later when the MPU code is added, update_boot_mapping() would invoke the equivalent. The common code now invokes update_boot_mapping() instead of update_identity_mapping(). So, that there is clear abstraction betwee