On Fri, Jul 15, 2016 at 5:57 PM, Andrew Cooper
wrote:
> This allows a toolstack to identify whether a running domain is using hardware
> assisted paging or not.
>
> The appropriate tests differ by architecture, so introduce
> arch_get_domain_info(). ARM unconditionally sets the new flag, while x8
Hi Andrew,
On 15/07/16 17:57, Andrew Cooper wrote:
diff --git a/xen/arch/arm/domctl.c b/xen/arch/arm/domctl.c
index f61f98a..afa16d8 100644
--- a/xen/arch/arm/domctl.c
+++ b/xen/arch/arm/domctl.c
@@ -14,6 +14,12 @@
#include
#include
+void arch_get_domain_info(const struct domain *d,
+
On Fri, Jul 15, 2016 at 05:57:45PM +0100, Andrew Cooper wrote:
> This allows a toolstack to identify whether a running domain is using hardware
> assisted paging or not.
>
> The appropriate tests differ by architecture, so introduce
> arch_get_domain_info(). ARM unconditionally sets the new flag,
This allows a toolstack to identify whether a running domain is using hardware
assisted paging or not.
The appropriate tests differ by architecture, so introduce
arch_get_domain_info(). ARM unconditionally sets the new flag, while x86
checks with the paging subsystem first.
Signed-off-by: Andrew