diff options
Diffstat (limited to 'drivers/vhost/vdpa.c')
| -rw-r--r-- | drivers/vhost/vdpa.c | 6 | 
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/vhost/vdpa.c b/drivers/vhost/vdpa.c index af1e1fdfd9ed..05a481e4c385 100644 --- a/drivers/vhost/vdpa.c +++ b/drivers/vhost/vdpa.c @@ -1318,7 +1318,8 @@ static int vhost_vdpa_alloc_domain(struct vhost_vdpa *v)  {  	struct vdpa_device *vdpa = v->vdpa;  	const struct vdpa_config_ops *ops = vdpa->config; -	struct device *dma_dev = vdpa_get_dma_dev(vdpa); +	union virtio_map map = vdpa_get_map(vdpa); +	struct device *dma_dev = map.dma_dev;  	int ret;  	/* Device want to do DMA by itself */ @@ -1353,7 +1354,8 @@ err_attach:  static void vhost_vdpa_free_domain(struct vhost_vdpa *v)  {  	struct vdpa_device *vdpa = v->vdpa; -	struct device *dma_dev = vdpa_get_dma_dev(vdpa); +	union virtio_map map = vdpa_get_map(vdpa); +	struct device *dma_dev = map.dma_dev;  	if (v->domain) {  		iommu_detach_device(v->domain, dma_dev);  | 
