Re: [Xen-devel] [PATCH v2 08/25] arm/altp2m: Add HVMOP_altp2m_set_domain_state.

2016-08-11 Thread Julien Grall
Hello Sergej, On 06/08/2016 11:36, Sergej Proskurin wrote: + +/* Initialize the new altp2m view. */ +rc = p2m_init_one(d, p2m); +if ( rc ) +goto err; + +/* Allocate a root table for the altp2m view. */ +rc = p2m_alloc_table(p2m); +if ( rc ) +goto err; + +

Re: [Xen-devel] [PATCH v2 08/25] arm/altp2m: Add HVMOP_altp2m_set_domain_state.

2016-08-06 Thread Julien Grall
Hello Sergej, On 06/08/2016 10:36, Sergej Proskurin wrote: (I did not finish answering all questions in the previous mail) On 08/03/2016 08:41 PM, Julien Grall wrote: On 01/08/16 18:10, Sergej Proskurin wrote: [...] + +/* Initialize the new altp2m view. */ +rc = p2m_init_one(d,

Re: [Xen-devel] [PATCH v2 08/25] arm/altp2m: Add HVMOP_altp2m_set_domain_state.

2016-08-06 Thread Julien Grall
Hello Sergej, On 06/08/2016 10:36, Sergej Proskurin wrote: (I did not finish answering all questions in the previous mail) On 08/03/2016 08:41 PM, Julien Grall wrote: On 01/08/16 18:10, Sergej Proskurin wrote: [...] + +/* Initialize the new altp2m view. */ +rc = p2m_init_one(d,

Re: [Xen-devel] [PATCH v2 08/25] arm/altp2m: Add HVMOP_altp2m_set_domain_state.

2016-08-06 Thread Sergej Proskurin
(I did not finish answering all questions in the previous mail) Hi Julien, On 08/03/2016 08:41 PM, Julien Grall wrote: > Hello Sergej, > > On 01/08/16 18:10, Sergej Proskurin wrote: >> The HVMOP_altp2m_set_domain_state allows to activate altp2m on a >> specific domain. This commit adopts the

Re: [Xen-devel] [PATCH v2 08/25] arm/altp2m: Add HVMOP_altp2m_set_domain_state.

2016-08-06 Thread Sergej Proskurin
Hi Julien, On 08/03/2016 08:41 PM, Julien Grall wrote: > Hello Sergej, > > On 01/08/16 18:10, Sergej Proskurin wrote: >> The HVMOP_altp2m_set_domain_state allows to activate altp2m on a >> specific domain. This commit adopts the x86 >> HVMOP_altp2m_set_domain_state implementation. Note that the

Re: [Xen-devel] [PATCH v2 08/25] arm/altp2m: Add HVMOP_altp2m_set_domain_state.

2016-08-03 Thread Julien Grall
Hello Sergej, On 01/08/16 18:10, Sergej Proskurin wrote: The HVMOP_altp2m_set_domain_state allows to activate altp2m on a specific domain. This commit adopts the x86 HVMOP_altp2m_set_domain_state implementation. Note that the function altp2m_flush is currently implemented in form of a stub.

[Xen-devel] [PATCH v2 08/25] arm/altp2m: Add HVMOP_altp2m_set_domain_state.

2016-08-01 Thread Sergej Proskurin
The HVMOP_altp2m_set_domain_state allows to activate altp2m on a specific domain. This commit adopts the x86 HVMOP_altp2m_set_domain_state implementation. Note that the function altp2m_flush is currently implemented in form of a stub. Signed-off-by: Sergej Proskurin ---