Re: [Xen-devel] [PATCH 3/4] x86: Add map_domain_pages_global

2018-09-24 Thread Julien Grall
Hi, On 09/13/2018 04:01 PM, Petre Pircalabu wrote: Create a single mapping for multiple domain pages. Signed-off-by: Petre Pircalabu --- tools/libxc/xc_vm_event.c | 2 +- xen/arch/x86/domain_page.c| 22 ++ xen/include/xen/domain_page.h | 9 + 3 files

Re: [Xen-devel] [PATCH 3/4] x86: Add map_domain_pages_global

2018-09-18 Thread Jan Beulich
>>> On 13.09.18 at 17:01, wrote: > Create a single mapping for multiple domain pages. At least as far as map_domain_pages_global() goes, you will want to justify why what we have isn't enough. > --- a/tools/libxc/xc_vm_event.c > +++ b/tools/libxc/xc_vm_event.c > @@ -74,7 +74,7 @@ static int xc_v

[Xen-devel] [PATCH 3/4] x86: Add map_domain_pages_global

2018-09-13 Thread Petre Pircalabu
Create a single mapping for multiple domain pages. Signed-off-by: Petre Pircalabu --- tools/libxc/xc_vm_event.c | 2 +- xen/arch/x86/domain_page.c| 22 ++ xen/include/xen/domain_page.h | 9 + 3 files changed, 32 insertions(+), 1 deletion(-) diff --git a/too