> -----Original Message-----
> From: Roger Pau Monne [mailto:roger....@citrix.com]
> Sent: 08 October 2018 11:15
> To: xen-devel@lists.xenproject.org
> Cc: Roger Pau Monne <roger....@citrix.com>; Jan Beulich
> <jbeul...@suse.com>; Paul Durrant <paul.durr...@citrix.com>
> Subject: [PATCH] x86/vtd: fix iommu_share_p2m_table
> 
> Commit 2916951c1 changed the check in iommu_share_p2m_table to use
> need_iommu(d) instead of iommu_enabled, which broke the check because
> at the point in domain construction where iommu_share_p2m_table is
> called need_iommu(d) will always return false.
> 
> Fix this by reverting to the previous logic.

Thanks for finding this.

Above, I think you need to include the title of commit 2916951c1 and also the 
text should say that the need_iommu() check became implicit in 
iommu_hap_pt_share() (otherwise folks looking at the patch may be bemused 
because need_iommu is not in the code).

The code looks fine though so...

Reviewed-by: Paul Durrant <paul.durr...@citrix.com>

> 
> Signed-off-by: Roger Pau Monné <roger....@citrix.com>
> ---
> Cc: Jan Beulich <jbeul...@suse.com>
> Cc: Paul Durrant <paul.durr...@citrix.com>
> ---
>  xen/drivers/passthrough/iommu.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/xen/drivers/passthrough/iommu.c
> b/xen/drivers/passthrough/iommu.c
> index debb5e6fe1..a9408f1de9 100644
> --- a/xen/drivers/passthrough/iommu.c
> +++ b/xen/drivers/passthrough/iommu.c
> @@ -505,7 +505,7 @@ int iommu_do_domctl(
> 
>  void iommu_share_p2m_table(struct domain* d)
>  {
> -    if ( iommu_use_hap_pt(d) )
> +    if ( iommu_enabled && hap_enabled(d) && iommu_hap_pt_share )
>          iommu_get_ops()->share_p2m(d);
>  }
> 
> --
> 2.19.0

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

Reply via email to