Re: [Xen-devel] [PATCH v2 1/8] viridian: add init hooks

2019-01-29 Thread Paul Durrant
> -Original Message- > From: Jan Beulich [mailto:jbeul...@suse.com] > Sent: 29 January 2019 11:48 > To: Paul Durrant > Cc: Andrew Cooper ; Roger Pau Monne > ; Wei Liu ; xen- > de...@lists.xenproject.org > Subject: Re: [PATCH v2 1/8] viridian: add init hooks > > >>> Paul Durrant 01/08/19

Re: [Xen-devel] [PATCH v2 1/8] viridian: add init hooks

2019-01-29 Thread Jan Beulich
>>> Paul Durrant 01/08/19 4:18 PM >>> >--- a/xen/arch/x86/hvm/hvm.c >+++ b/xen/arch/x86/hvm/hvm.c >@@ -665,12 +665,18 @@ int hvm_domain_initialise(struct domain *d) >if ( hvm_tsc_scaling_supported ) >d->arch.hvm.tsc_scaling_ratio = hvm_default_tsc_scaling_ratio; > >+rc = viridian_domain_init(

Re: [Xen-devel] [PATCH v2 1/8] viridian: add init hooks

2019-01-11 Thread Paul Durrant
> -Original Message- > From: Paul Durrant [mailto:paul.durr...@citrix.com] > Sent: 08 January 2019 15:18 > To: xen-devel@lists.xenproject.org > Cc: Paul Durrant ; Wei Liu ; > Jan Beulich ; Andrew Cooper > ; Roger Pau Monne > Subject: [PATCH v2 1/8] viridian: add init hooks > > This patch

[Xen-devel] [PATCH v2 1/8] viridian: add init hooks

2019-01-08 Thread Paul Durrant
This patch adds domain and vcpu init hooks for viridian features. The init hooks do not yet do anything; the functionality will be added to by subsequent patches. NOTE: This patch also removes the call from the domain deinit function to the vcpu deinit function, as this is not necessary. Si