>>> On 23.07.15 at 01:01, <edmund.h.wh...@intel.com> wrote:
> --- a/xen/arch/x86/hvm/hvm.c
> +++ b/xen/arch/x86/hvm/hvm.c
> @@ -6005,6 +6005,9 @@ static int hvmop_set_param(
>                  nestedhvm_vcpu_destroy(v);
>          break;
>      case HVM_PARAM_ALTP2M:
> +        rc = xsm_hvm_param_altp2mhvm(XSM_PRIV, d);
> +        if ( rc )
> +            break;
>          if ( a.value > 1 )
>              rc = -EINVAL;
>          if ( a.value &&
> @@ -6189,6 +6192,9 @@ static int do_altp2m_op(
>          goto out;
>      }
>  
> +    if ( (rc = xsm_hvm_altp2mhvm_op(XSM_TARGET, d ? d : current->domain)) )
> +        goto out;
> +

Shouldn't this have got updated after the changes to patch 11?

Jan


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel

Reply via email to