Re: [Xen-devel] [PATCH v2 09/12] xen/domain: Call arch_domain_create() as early as possible in domain_create()

2018-08-15 Thread Jan Beulich
>>> On 13.08.18 at 12:01,  wrote:
> This is in preparation to set up d->max_cpus and d->vcpu[] in domain_create(),
> and allow later parts of domain construction to have access to the values.
> 
> Signed-off-by: Andrew Cooper 

Reviewed-by: Jan Beulich 



___
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

Re: [Xen-devel] [PATCH v2 09/12] xen/domain: Call arch_domain_create() as early as possible in domain_create()

2018-08-14 Thread Roger Pau Monné
On Mon, Aug 13, 2018 at 11:01:06AM +0100, Andrew Cooper wrote:
> This is in preparation to set up d->max_cpus and d->vcpu[] in domain_create(),
> and allow later parts of domain construction to have access to the values.
> 
> Signed-off-by: Andrew Cooper 
> ---
> CC: Jan Beulich 
> CC: Stefano Stabellini 
> CC: Julien Grall 
> CC: Wei Liu 
> ---
>  xen/common/domain.c | 34 +-
>  1 file changed, 17 insertions(+), 17 deletions(-)
> 
> diff --git a/xen/common/domain.c b/xen/common/domain.c
> index be51426..0c44f27 100644
> --- a/xen/common/domain.c
> +++ b/xen/common/domain.c
> @@ -322,6 +322,23 @@ struct domain *domain_create(domid_t domid,
>  else
>  d->guest_type = guest_type_pv;
>  
> +if ( !is_hardware_domain(d) )
> +d->nr_pirqs = nr_static_irqs + extra_domU_irqs;
> +else
> +d->nr_pirqs = extra_hwdom_irqs ? nr_static_irqs + 
> extra_hwdom_irqs
> +   : arch_hwdom_irqs(domid);
> +if ( d->nr_pirqs > nr_irqs )
> +d->nr_pirqs = nr_irqs;

d->nr_pirqs = min(d->nr_pirqs, nr_irqs);

LGTM:

Reviewed-by: Roger Pau Monné 

___
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

[Xen-devel] [PATCH v2 09/12] xen/domain: Call arch_domain_create() as early as possible in domain_create()

2018-08-13 Thread Andrew Cooper
This is in preparation to set up d->max_cpus and d->vcpu[] in domain_create(),
and allow later parts of domain construction to have access to the values.

Signed-off-by: Andrew Cooper 
---
CC: Jan Beulich 
CC: Stefano Stabellini 
CC: Julien Grall 
CC: Wei Liu 
---
 xen/common/domain.c | 34 +-
 1 file changed, 17 insertions(+), 17 deletions(-)

diff --git a/xen/common/domain.c b/xen/common/domain.c
index be51426..0c44f27 100644
--- a/xen/common/domain.c
+++ b/xen/common/domain.c
@@ -322,6 +322,23 @@ struct domain *domain_create(domid_t domid,
 else
 d->guest_type = guest_type_pv;
 
+if ( !is_hardware_domain(d) )
+d->nr_pirqs = nr_static_irqs + extra_domU_irqs;
+else
+d->nr_pirqs = extra_hwdom_irqs ? nr_static_irqs + extra_hwdom_irqs
+   : arch_hwdom_irqs(domid);
+if ( d->nr_pirqs > nr_irqs )
+d->nr_pirqs = nr_irqs;
+
+radix_tree_init(>pirq_tree);
+}
+
+if ( (err = arch_domain_create(d, config)) != 0 )
+goto fail;
+init_status |= INIT_arch;
+
+if ( !is_idle_domain(d) )
+{
 watchdog_domain_init(d);
 init_status |= INIT_watchdog;
 
@@ -352,16 +369,6 @@ struct domain *domain_create(domid_t domid,
 d->controller_pause_count = 1;
 atomic_inc(>pause_count);
 
-if ( !is_hardware_domain(d) )
-d->nr_pirqs = nr_static_irqs + extra_domU_irqs;
-else
-d->nr_pirqs = extra_hwdom_irqs ? nr_static_irqs + extra_hwdom_irqs
-   : arch_hwdom_irqs(domid);
-if ( d->nr_pirqs > nr_irqs )
-d->nr_pirqs = nr_irqs;
-
-radix_tree_init(>pirq_tree);
-
 if ( (err = evtchn_init(d, config->max_evtchn_port)) != 0 )
 goto fail;
 init_status |= INIT_evtchn;
@@ -376,14 +383,7 @@ struct domain *domain_create(domid_t domid,
 d->pbuf = xzalloc_array(char, DOMAIN_PBUF_SIZE);
 if ( !d->pbuf )
 goto fail;
-}
-
-if ( (err = arch_domain_create(d, config)) != 0 )
-goto fail;
-init_status |= INIT_arch;
 
-if ( !is_idle_domain(d) )
-{
 if ( (err = sched_init_domain(d, 0)) != 0 )
 goto fail;
 
-- 
2.1.4


___
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel