* [dpdk-dev] [PATCH v2] vhost: avoid iotlb mempool allocation while IOMMU disabled
@ 2021-02-02 8:14 Wan Junjie
2021-04-07 7:10 ` Xia, Chenbo
0 siblings, 1 reply; 10+ messages in thread
From: Wan Junjie @ 2021-02-02 8:14 UTC (permalink / raw)
To: Chenbo Xia, Maxime Coquelin; +Cc: dev, Wan Junjie, Peng He, Zhihong Wang
If vhost device's IOMMU feature is disabled, iotlb mempool allocation
is unnecessary.
Reported-by: Peng He <hepeng.0320@bytedance.com>
Signed-off-by: Wan Junjie <wanjunjie@bytedance.com>
Reviewed-by: Zhihong Wang <wangzhihong.wzh@bytedance.com>
---
lib/librte_vhost/vhost.c | 4 ++--
lib/librte_vhost/vhost_user.c | 6 +++++-
2 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/lib/librte_vhost/vhost.c b/lib/librte_vhost/vhost.c
index b83cf639e..e5341ab98 100644
--- a/lib/librte_vhost/vhost.c
+++ b/lib/librte_vhost/vhost.c
@@ -352,7 +352,8 @@ free_vq(struct virtio_net *dev, struct vhost_virtqueue *vq)
vhost_free_async_mem(vq);
}
rte_free(vq->batch_copy_elems);
- rte_mempool_free(vq->iotlb_pool);
+ if (vq->iotlb_pool)
+ rte_mempool_free(vq->iotlb_pool);
rte_free(vq);
}
@@ -556,7 +557,6 @@ init_vring_queue(struct virtio_net *dev, uint32_t vring_idx)
vq->callfd = VIRTIO_UNINITIALIZED_EVENTFD;
vq->notif_enable = VIRTIO_UNINITIALIZED_NOTIF;
- vhost_user_iotlb_init(dev, vring_idx);
/* Backends are set to -1 indicating an inactive device. */
vq->backend = -1;
}
diff --git a/lib/librte_vhost/vhost_user.c b/lib/librte_vhost/vhost_user.c
index 45c8ac09d..81cbb9797 100644
--- a/lib/librte_vhost/vhost_user.c
+++ b/lib/librte_vhost/vhost_user.c
@@ -470,6 +470,10 @@ vhost_user_set_vring_num(struct virtio_net **pdev,
return RTE_VHOST_MSG_RESULT_ERR;
}
+ if (dev->features & (1ULL << VIRTIO_F_IOMMU_PLATFORM)) {
+ if (vhost_user_iotlb_init(dev, msg->payload.state.index))
+ return RTE_VHOST_MSG_RESULT_ERR;
+ }
return RTE_VHOST_MSG_RESULT_OK;
}
@@ -575,7 +579,7 @@ numa_realloc(struct virtio_net *dev, int index)
dev->virtqueue[index] = vq;
vhost_devices[dev->vid] = dev;
- if (old_vq != vq)
+ if (old_vq != vq && (dev->features & (1ULL << VIRTIO_F_IOMMU_PLATFORM)))
vhost_user_iotlb_init(dev, index);
return dev;
--
2.11.0
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [dpdk-dev] [PATCH v2] vhost: avoid iotlb mempool allocation while IOMMU disabled
2021-02-02 8:14 [dpdk-dev] [PATCH v2] vhost: avoid iotlb mempool allocation while IOMMU disabled Wan Junjie
@ 2021-04-07 7:10 ` Xia, Chenbo
2021-05-13 8:39 ` David Marchand
0 siblings, 1 reply; 10+ messages in thread
From: Xia, Chenbo @ 2021-04-07 7:10 UTC (permalink / raw)
To: Wan Junjie, Maxime Coquelin; +Cc: dev, Peng He, Zhihong Wang
> -----Original Message-----
> From: Wan Junjie <wanjunjie@bytedance.com>
> Sent: Tuesday, February 2, 2021 4:15 PM
> To: Xia, Chenbo <chenbo.xia@intel.com>; Maxime Coquelin
> <maxime.coquelin@redhat.com>
> Cc: dev@dpdk.org; Wan Junjie <wanjunjie@bytedance.com>; Peng He
> <hepeng.0320@bytedance.com>; Zhihong Wang <wangzhihong.wzh@bytedance.com>
> Subject: [PATCH v2] vhost: avoid iotlb mempool allocation while IOMMU disabled
>
> If vhost device's IOMMU feature is disabled, iotlb mempool allocation
> is unnecessary.
>
> Reported-by: Peng He <hepeng.0320@bytedance.com>
> Signed-off-by: Wan Junjie <wanjunjie@bytedance.com>
> Reviewed-by: Zhihong Wang <wangzhihong.wzh@bytedance.com>
> ---
> 2.11.0
Patch applied to next-virtio/main with conflict resolved, Thanks
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [dpdk-dev] [PATCH v2] vhost: avoid iotlb mempool allocation while IOMMU disabled
2021-04-07 7:10 ` Xia, Chenbo
@ 2021-05-13 8:39 ` David Marchand
2021-05-13 10:24 ` Xia, Chenbo
0 siblings, 1 reply; 10+ messages in thread
From: David Marchand @ 2021-05-13 8:39 UTC (permalink / raw)
To: Xia, Chenbo, Maxime Coquelin; +Cc: Wan Junjie, dev, Peng He, Zhihong Wang
On Wed, Apr 7, 2021 at 9:10 AM Xia, Chenbo <chenbo.xia@intel.com> wrote:
>
> > -----Original Message-----
> > From: Wan Junjie <wanjunjie@bytedance.com>
> > Sent: Tuesday, February 2, 2021 4:15 PM
> > To: Xia, Chenbo <chenbo.xia@intel.com>; Maxime Coquelin
> > <maxime.coquelin@redhat.com>
> > Cc: dev@dpdk.org; Wan Junjie <wanjunjie@bytedance.com>; Peng He
> > <hepeng.0320@bytedance.com>; Zhihong Wang <wangzhihong.wzh@bytedance.com>
> > Subject: [PATCH v2] vhost: avoid iotlb mempool allocation while IOMMU disabled
> >
> > If vhost device's IOMMU feature is disabled, iotlb mempool allocation
> > is unnecessary.
> >
> > Reported-by: Peng He <hepeng.0320@bytedance.com>
> > Signed-off-by: Wan Junjie <wanjunjie@bytedance.com>
> > Reviewed-by: Zhihong Wang <wangzhihong.wzh@bytedance.com>
> > ---
> > 2.11.0
>
> Patch applied to next-virtio/main with conflict resolved, Thanks
This patch triggered a regression reported by Red Hat QE.
https://bugs.dpdk.org/show_bug.cgi?id=703
Reverting the patch is enough to fix the regression.
I'll let you guys decide on the next step for 21.05.
--
David Marchand
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [dpdk-dev] [PATCH v2] vhost: avoid iotlb mempool allocation while IOMMU disabled
2021-05-13 8:39 ` David Marchand
@ 2021-05-13 10:24 ` Xia, Chenbo
2021-05-13 10:51 ` [dpdk-dev] [External] " Wan Junjie
0 siblings, 1 reply; 10+ messages in thread
From: Xia, Chenbo @ 2021-05-13 10:24 UTC (permalink / raw)
To: David Marchand, Maxime Coquelin, Wan Junjie
Cc: dev, Peng He, Zhihong Wang, Thomas Monjalon
> -----Original Message-----
> From: David Marchand <david.marchand@redhat.com>
> Sent: Thursday, May 13, 2021 4:39 PM
> To: Xia, Chenbo <chenbo.xia@intel.com>; Maxime Coquelin
> <maxime.coquelin@redhat.com>
> Cc: Wan Junjie <wanjunjie@bytedance.com>; dev@dpdk.org; Peng He
> <hepeng.0320@bytedance.com>; Zhihong Wang <wangzhihong.wzh@bytedance.com>
> Subject: Re: [dpdk-dev] [PATCH v2] vhost: avoid iotlb mempool allocation while
> IOMMU disabled
>
> On Wed, Apr 7, 2021 at 9:10 AM Xia, Chenbo <chenbo.xia@intel.com> wrote:
> >
> > > -----Original Message-----
> > > From: Wan Junjie <wanjunjie@bytedance.com>
> > > Sent: Tuesday, February 2, 2021 4:15 PM
> > > To: Xia, Chenbo <chenbo.xia@intel.com>; Maxime Coquelin
> > > <maxime.coquelin@redhat.com>
> > > Cc: dev@dpdk.org; Wan Junjie <wanjunjie@bytedance.com>; Peng He
> > > <hepeng.0320@bytedance.com>; Zhihong Wang <wangzhihong.wzh@bytedance.com>
> > > Subject: [PATCH v2] vhost: avoid iotlb mempool allocation while IOMMU
> disabled
> > >
> > > If vhost device's IOMMU feature is disabled, iotlb mempool allocation
> > > is unnecessary.
> > >
> > > Reported-by: Peng He <hepeng.0320@bytedance.com>
> > > Signed-off-by: Wan Junjie <wanjunjie@bytedance.com>
> > > Reviewed-by: Zhihong Wang <wangzhihong.wzh@bytedance.com>
> > > ---
> > > 2.11.0
> >
> > Patch applied to next-virtio/main with conflict resolved, Thanks
>
> This patch triggered a regression reported by Red Hat QE.
> https://bugs.dpdk.org/show_bug.cgi?id=703
>
> Reverting the patch is enough to fix the regression.
>
> I'll let you guys decide on the next step for 21.05.
>
>
> --
> David Marchand
I cannot reproduce this issue on my machine.
@Wan Junjie Could you reproduce this? I prefer to revert the patch if things
are not very clear as it is only a minor optimization.
Thanks,
Chenbo
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [dpdk-dev] [External] RE: [PATCH v2] vhost: avoid iotlb mempool allocation while IOMMU disabled
2021-05-13 10:24 ` Xia, Chenbo
@ 2021-05-13 10:51 ` Wan Junjie
2021-05-13 10:58 ` Xia, Chenbo
2021-05-13 11:41 ` Xia, Chenbo
0 siblings, 2 replies; 10+ messages in thread
From: Wan Junjie @ 2021-05-13 10:51 UTC (permalink / raw)
To: Xia, Chenbo
Cc: David Marchand, Maxime Coquelin, dev, Peng He, Zhihong Wang,
Thomas Monjalon
On Thu, May 13, 2021 at 6:24 PM Xia, Chenbo <chenbo.xia@intel.com> wrote:
>
> > -----Original Message-----
> > From: David Marchand <david.marchand@redhat.com>
> > Sent: Thursday, May 13, 2021 4:39 PM
> > To: Xia, Chenbo <chenbo.xia@intel.com>; Maxime Coquelin
> > <maxime.coquelin@redhat.com>
> > Cc: Wan Junjie <wanjunjie@bytedance.com>; dev@dpdk.org; Peng He
> > <hepeng.0320@bytedance.com>; Zhihong Wang <wangzhihong.wzh@bytedance.com>
> > Subject: Re: [dpdk-dev] [PATCH v2] vhost: avoid iotlb mempool allocation while
> > IOMMU disabled
> >
> > On Wed, Apr 7, 2021 at 9:10 AM Xia, Chenbo <chenbo.xia@intel.com> wrote:
> > >
> > > > -----Original Message-----
> > > > From: Wan Junjie <wanjunjie@bytedance.com>
> > > > Sent: Tuesday, February 2, 2021 4:15 PM
> > > > To: Xia, Chenbo <chenbo.xia@intel.com>; Maxime Coquelin
> > > > <maxime.coquelin@redhat.com>
> > > > Cc: dev@dpdk.org; Wan Junjie <wanjunjie@bytedance.com>; Peng He
> > > > <hepeng.0320@bytedance.com>; Zhihong Wang <wangzhihong.wzh@bytedance.com>
> > > > Subject: [PATCH v2] vhost: avoid iotlb mempool allocation while IOMMU
> > disabled
> > > >
> > > > If vhost device's IOMMU feature is disabled, iotlb mempool allocation
> > > > is unnecessary.
> > > >
> > > > Reported-by: Peng He <hepeng.0320@bytedance.com>
> > > > Signed-off-by: Wan Junjie <wanjunjie@bytedance.com>
> > > > Reviewed-by: Zhihong Wang <wangzhihong.wzh@bytedance.com>
> > > > ---
> > > > 2.11.0
> > >
> > > Patch applied to next-virtio/main with conflict resolved, Thanks
> >
> > This patch triggered a regression reported by Red Hat QE.
> > https://bugs.dpdk.org/show_bug.cgi?id=703
> >
> > Reverting the patch is enough to fix the regression.
> >
> > I'll let you guys decide on the next step for 21.05.
> >
> >
> > --
> > David Marchand
>
> I cannot reproduce this issue on my machine.
>
> @Wan Junjie Could you reproduce this? I prefer to revert the patch if things
> are not very clear as it is only a minor optimization.
>
> Thanks,
> Chenbo
>
>
Hi Chenbo,
I am not available for this now. Please revert it.
Will dig it later.
Thanks,
Junjie
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [dpdk-dev] [External] RE: [PATCH v2] vhost: avoid iotlb mempool allocation while IOMMU disabled
2021-05-13 10:51 ` [dpdk-dev] [External] " Wan Junjie
@ 2021-05-13 10:58 ` Xia, Chenbo
2021-05-13 11:41 ` Xia, Chenbo
1 sibling, 0 replies; 10+ messages in thread
From: Xia, Chenbo @ 2021-05-13 10:58 UTC (permalink / raw)
To: Wan Junjie
Cc: David Marchand, Maxime Coquelin, dev, Peng He, Zhihong Wang,
Thomas Monjalon
> -----Original Message-----
> From: Wan Junjie <wanjunjie@bytedance.com>
> Sent: Thursday, May 13, 2021 6:52 PM
> To: Xia, Chenbo <chenbo.xia@intel.com>
> Cc: David Marchand <david.marchand@redhat.com>; Maxime Coquelin
> <maxime.coquelin@redhat.com>; dev@dpdk.org; Peng He
> <hepeng.0320@bytedance.com>; Zhihong Wang <wangzhihong.wzh@bytedance.com>;
> Thomas Monjalon <thomas@monjalon.net>
> Subject: Re: [External] RE: [dpdk-dev] [PATCH v2] vhost: avoid iotlb mempool
> allocation while IOMMU disabled
>
> On Thu, May 13, 2021 at 6:24 PM Xia, Chenbo <chenbo.xia@intel.com> wrote:
> >
> > > -----Original Message-----
> > > From: David Marchand <david.marchand@redhat.com>
> > > Sent: Thursday, May 13, 2021 4:39 PM
> > > To: Xia, Chenbo <chenbo.xia@intel.com>; Maxime Coquelin
> > > <maxime.coquelin@redhat.com>
> > > Cc: Wan Junjie <wanjunjie@bytedance.com>; dev@dpdk.org; Peng He
> > > <hepeng.0320@bytedance.com>; Zhihong Wang <wangzhihong.wzh@bytedance.com>
> > > Subject: Re: [dpdk-dev] [PATCH v2] vhost: avoid iotlb mempool allocation
> while
> > > IOMMU disabled
> > >
> > > On Wed, Apr 7, 2021 at 9:10 AM Xia, Chenbo <chenbo.xia@intel.com> wrote:
> > > >
> > > > > -----Original Message-----
> > > > > From: Wan Junjie <wanjunjie@bytedance.com>
> > > > > Sent: Tuesday, February 2, 2021 4:15 PM
> > > > > To: Xia, Chenbo <chenbo.xia@intel.com>; Maxime Coquelin
> > > > > <maxime.coquelin@redhat.com>
> > > > > Cc: dev@dpdk.org; Wan Junjie <wanjunjie@bytedance.com>; Peng He
> > > > > <hepeng.0320@bytedance.com>; Zhihong Wang
> <wangzhihong.wzh@bytedance.com>
> > > > > Subject: [PATCH v2] vhost: avoid iotlb mempool allocation while IOMMU
> > > disabled
> > > > >
> > > > > If vhost device's IOMMU feature is disabled, iotlb mempool allocation
> > > > > is unnecessary.
> > > > >
> > > > > Reported-by: Peng He <hepeng.0320@bytedance.com>
> > > > > Signed-off-by: Wan Junjie <wanjunjie@bytedance.com>
> > > > > Reviewed-by: Zhihong Wang <wangzhihong.wzh@bytedance.com>
> > > > > ---
> > > > > 2.11.0
> > > >
> > > > Patch applied to next-virtio/main with conflict resolved, Thanks
> > >
> > > This patch triggered a regression reported by Red Hat QE.
> > > https://bugs.dpdk.org/show_bug.cgi?id=703
> > >
>
>
> > > Reverting the patch is enough to fix the regression.
> > >
> > > I'll let you guys decide on the next step for 21.05.
> > >
> > >
> > > --
> > > David Marchand
> >
> > I cannot reproduce this issue on my machine.
> >
> > @Wan Junjie Could you reproduce this? I prefer to revert the patch if things
> > are not very clear as it is only a minor optimization.
> >
> > Thanks,
> > Chenbo
> >
> >
>
> Hi Chenbo,
>
> I am not available for this now. Please revert it.
> Will dig it later.
>
> Thanks,
> Junjie
Luckily I can reproduce now. I will take a look.
Chenbo
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [dpdk-dev] [External] RE: [PATCH v2] vhost: avoid iotlb mempool allocation while IOMMU disabled
2021-05-13 10:51 ` [dpdk-dev] [External] " Wan Junjie
2021-05-13 10:58 ` Xia, Chenbo
@ 2021-05-13 11:41 ` Xia, Chenbo
1 sibling, 0 replies; 10+ messages in thread
From: Xia, Chenbo @ 2021-05-13 11:41 UTC (permalink / raw)
To: Wan Junjie
Cc: David Marchand, Maxime Coquelin, dev, Peng He, Zhihong Wang,
Thomas Monjalon
Hi,
> -----Original Message-----
> From: Wan Junjie <wanjunjie@bytedance.com>
> Sent: Thursday, May 13, 2021 6:52 PM
> To: Xia, Chenbo <chenbo.xia@intel.com>
> Cc: David Marchand <david.marchand@redhat.com>; Maxime Coquelin
> <maxime.coquelin@redhat.com>; dev@dpdk.org; Peng He
> <hepeng.0320@bytedance.com>; Zhihong Wang <wangzhihong.wzh@bytedance.com>;
> Thomas Monjalon <thomas@monjalon.net>
> Subject: Re: [External] RE: [dpdk-dev] [PATCH v2] vhost: avoid iotlb mempool
> allocation while IOMMU disabled
>
> On Thu, May 13, 2021 at 6:24 PM Xia, Chenbo <chenbo.xia@intel.com> wrote:
> >
> > > -----Original Message-----
> > > From: David Marchand <david.marchand@redhat.com>
> > > Sent: Thursday, May 13, 2021 4:39 PM
> > > To: Xia, Chenbo <chenbo.xia@intel.com>; Maxime Coquelin
> > > <maxime.coquelin@redhat.com>
> > > Cc: Wan Junjie <wanjunjie@bytedance.com>; dev@dpdk.org; Peng He
> > > <hepeng.0320@bytedance.com>; Zhihong Wang <wangzhihong.wzh@bytedance.com>
> > > Subject: Re: [dpdk-dev] [PATCH v2] vhost: avoid iotlb mempool allocation
> while
> > > IOMMU disabled
> > >
> > > On Wed, Apr 7, 2021 at 9:10 AM Xia, Chenbo <chenbo.xia@intel.com> wrote:
> > > >
> > > > > -----Original Message-----
> > > > > From: Wan Junjie <wanjunjie@bytedance.com>
> > > > > Sent: Tuesday, February 2, 2021 4:15 PM
> > > > > To: Xia, Chenbo <chenbo.xia@intel.com>; Maxime Coquelin
> > > > > <maxime.coquelin@redhat.com>
> > > > > Cc: dev@dpdk.org; Wan Junjie <wanjunjie@bytedance.com>; Peng He
> > > > > <hepeng.0320@bytedance.com>; Zhihong Wang
> <wangzhihong.wzh@bytedance.com>
> > > > > Subject: [PATCH v2] vhost: avoid iotlb mempool allocation while IOMMU
> > > disabled
> > > > >
> > > > > If vhost device's IOMMU feature is disabled, iotlb mempool allocation
> > > > > is unnecessary.
> > > > >
> > > > > Reported-by: Peng He <hepeng.0320@bytedance.com>
> > > > > Signed-off-by: Wan Junjie <wanjunjie@bytedance.com>
> > > > > Reviewed-by: Zhihong Wang <wangzhihong.wzh@bytedance.com>
> > > > > ---
> > > > > 2.11.0
> > > >
> > > > Patch applied to next-virtio/main with conflict resolved, Thanks
> > >
> > > This patch triggered a regression reported by Red Hat QE.
> > > https://bugs.dpdk.org/show_bug.cgi?id=703
> > >
>
>
> > > Reverting the patch is enough to fix the regression.
> > >
> > > I'll let you guys decide on the next step for 21.05.
> > >
> > >
> > > --
> > > David Marchand
> >
> > I cannot reproduce this issue on my machine.
> >
> > @Wan Junjie Could you reproduce this? I prefer to revert the patch if things
> > are not very clear as it is only a minor optimization.
> >
> > Thanks,
> > Chenbo
> >
> >
>
> Hi Chenbo,
>
> I am not available for this now. Please revert it.
> Will dig it later.
>
> Thanks,
> Junjie
I know the root cause, it is because when multi-queue is on, qemu only enable the
first queue pair and does not 'VHOST_USER_SET_VRING_NUM' for other queue pairs, which leads
to disabled queue pairs' iotlb_pool not init-ed. Then comes the iotlb message that operate
on all queue pairs iotlb pool.
A fix is coming.
Thanks,
Chenbo
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [dpdk-dev] [PATCH v2] vhost: avoid iotlb mempool allocation while IOMMU disabled
2021-02-02 8:38 ` [dpdk-dev] [PATCH v2] " Wan Junjie
2021-02-03 2:26 ` Xia, Chenbo
@ 2021-02-03 16:49 ` Maxime Coquelin
1 sibling, 0 replies; 10+ messages in thread
From: Maxime Coquelin @ 2021-02-03 16:49 UTC (permalink / raw)
To: Wan Junjie, Chenbo Xia; +Cc: dev, Peng He, Zhihong Wang
Hi,
On 2/2/21 9:38 AM, Wan Junjie wrote:
> If vhost device's IOMMU feature is disabled, iotlb mempool allocation
> is unnecessary.
>
> Reported-by: Peng He <hepeng.0320@bytedance.com>
> Signed-off-by: Wan Junjie <wanjunjie@bytedance.com>
Welcome to the community, looking forward for more contributions!
> Reviewed-by: Zhihong Wang <wangzhihong.wzh@bytedance.com>
And welcome back Zhihong! :)
> ---
> lib/librte_vhost/vhost.c | 4 ++--
> lib/librte_vhost/vhost_user.c | 6 +++++-
> 2 files changed, 7 insertions(+), 3 deletions(-)
>
The patch looks good to me, however this is more an optimization than a
fix. As we are late in the release cycle, I will postpone it to next
release.
Reviewed-by: Maxime Coquelin <maxime.coquelin@redhat.com>
Thanks,
Maxime
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [dpdk-dev] [PATCH v2] vhost: avoid iotlb mempool allocation while IOMMU disabled
2021-02-02 8:38 ` [dpdk-dev] [PATCH v2] " Wan Junjie
@ 2021-02-03 2:26 ` Xia, Chenbo
2021-02-03 16:49 ` Maxime Coquelin
1 sibling, 0 replies; 10+ messages in thread
From: Xia, Chenbo @ 2021-02-03 2:26 UTC (permalink / raw)
To: Wan Junjie, Maxime Coquelin; +Cc: dev, Peng He, Zhihong Wang
> -----Original Message-----
> From: Wan Junjie <wanjunjie@bytedance.com>
> Sent: Tuesday, February 2, 2021 4:39 PM
> To: Xia, Chenbo <chenbo.xia@intel.com>; Maxime Coquelin
> <maxime.coquelin@redhat.com>
> Cc: dev@dpdk.org; Wan Junjie <wanjunjie@bytedance.com>; Peng He
> <hepeng.0320@bytedance.com>; Zhihong Wang <wangzhihong.wzh@bytedance.com>
> Subject: [PATCH v2] vhost: avoid iotlb mempool allocation while IOMMU disabled
>
> If vhost device's IOMMU feature is disabled, iotlb mempool allocation
> is unnecessary.
>
> Reported-by: Peng He <hepeng.0320@bytedance.com>
> Signed-off-by: Wan Junjie <wanjunjie@bytedance.com>
> Reviewed-by: Zhihong Wang <wangzhihong.wzh@bytedance.com>
> ---
> lib/librte_vhost/vhost.c | 4 ++--
> lib/librte_vhost/vhost_user.c | 6 +++++-
> 2 files changed, 7 insertions(+), 3 deletions(-)
>
> diff --git a/lib/librte_vhost/vhost.c b/lib/librte_vhost/vhost.c
> index b83cf639e..e5341ab98 100644
> --- a/lib/librte_vhost/vhost.c
> +++ b/lib/librte_vhost/vhost.c
> @@ -352,7 +352,8 @@ free_vq(struct virtio_net *dev, struct vhost_virtqueue *vq)
> vhost_free_async_mem(vq);
> }
> rte_free(vq->batch_copy_elems);
> - rte_mempool_free(vq->iotlb_pool);
> + if (vq->iotlb_pool)
> + rte_mempool_free(vq->iotlb_pool);
> rte_free(vq);
> }
>
> @@ -556,7 +557,6 @@ init_vring_queue(struct virtio_net *dev, uint32_t
> vring_idx)
> vq->callfd = VIRTIO_UNINITIALIZED_EVENTFD;
> vq->notif_enable = VIRTIO_UNINITIALIZED_NOTIF;
>
> - vhost_user_iotlb_init(dev, vring_idx);
> /* Backends are set to -1 indicating an inactive device. */
> vq->backend = -1;
> }
> diff --git a/lib/librte_vhost/vhost_user.c b/lib/librte_vhost/vhost_user.c
> index 45c8ac09d..81cbb9797 100644
> --- a/lib/librte_vhost/vhost_user.c
> +++ b/lib/librte_vhost/vhost_user.c
> @@ -470,6 +470,10 @@ vhost_user_set_vring_num(struct virtio_net **pdev,
> return RTE_VHOST_MSG_RESULT_ERR;
> }
>
> + if (dev->features & (1ULL << VIRTIO_F_IOMMU_PLATFORM)) {
> + if (vhost_user_iotlb_init(dev, msg->payload.state.index))
> + return RTE_VHOST_MSG_RESULT_ERR;
> + }
> return RTE_VHOST_MSG_RESULT_OK;
> }
>
> @@ -575,7 +579,7 @@ numa_realloc(struct virtio_net *dev, int index)
> dev->virtqueue[index] = vq;
> vhost_devices[dev->vid] = dev;
>
> - if (old_vq != vq)
> + if (old_vq != vq && (dev->features & (1ULL << VIRTIO_F_IOMMU_PLATFORM)))
> vhost_user_iotlb_init(dev, index);
>
> return dev;
> --
> 2.11.0
Reviewed-by: Chenbo Xia <chenbo.xia@intel.com>
^ permalink raw reply [flat|nested] 10+ messages in thread
* [dpdk-dev] [PATCH v2] vhost: avoid iotlb mempool allocation while IOMMU disabled
2021-01-29 16:39 [dpdk-dev] [PATCH] " Wan Junjie
@ 2021-02-02 8:38 ` Wan Junjie
2021-02-03 2:26 ` Xia, Chenbo
2021-02-03 16:49 ` Maxime Coquelin
0 siblings, 2 replies; 10+ messages in thread
From: Wan Junjie @ 2021-02-02 8:38 UTC (permalink / raw)
To: Chenbo Xia, Maxime Coquelin; +Cc: dev, Wan Junjie, Peng He, Zhihong Wang
If vhost device's IOMMU feature is disabled, iotlb mempool allocation
is unnecessary.
Reported-by: Peng He <hepeng.0320@bytedance.com>
Signed-off-by: Wan Junjie <wanjunjie@bytedance.com>
Reviewed-by: Zhihong Wang <wangzhihong.wzh@bytedance.com>
---
lib/librte_vhost/vhost.c | 4 ++--
lib/librte_vhost/vhost_user.c | 6 +++++-
2 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/lib/librte_vhost/vhost.c b/lib/librte_vhost/vhost.c
index b83cf639e..e5341ab98 100644
--- a/lib/librte_vhost/vhost.c
+++ b/lib/librte_vhost/vhost.c
@@ -352,7 +352,8 @@ free_vq(struct virtio_net *dev, struct vhost_virtqueue *vq)
vhost_free_async_mem(vq);
}
rte_free(vq->batch_copy_elems);
- rte_mempool_free(vq->iotlb_pool);
+ if (vq->iotlb_pool)
+ rte_mempool_free(vq->iotlb_pool);
rte_free(vq);
}
@@ -556,7 +557,6 @@ init_vring_queue(struct virtio_net *dev, uint32_t vring_idx)
vq->callfd = VIRTIO_UNINITIALIZED_EVENTFD;
vq->notif_enable = VIRTIO_UNINITIALIZED_NOTIF;
- vhost_user_iotlb_init(dev, vring_idx);
/* Backends are set to -1 indicating an inactive device. */
vq->backend = -1;
}
diff --git a/lib/librte_vhost/vhost_user.c b/lib/librte_vhost/vhost_user.c
index 45c8ac09d..81cbb9797 100644
--- a/lib/librte_vhost/vhost_user.c
+++ b/lib/librte_vhost/vhost_user.c
@@ -470,6 +470,10 @@ vhost_user_set_vring_num(struct virtio_net **pdev,
return RTE_VHOST_MSG_RESULT_ERR;
}
+ if (dev->features & (1ULL << VIRTIO_F_IOMMU_PLATFORM)) {
+ if (vhost_user_iotlb_init(dev, msg->payload.state.index))
+ return RTE_VHOST_MSG_RESULT_ERR;
+ }
return RTE_VHOST_MSG_RESULT_OK;
}
@@ -575,7 +579,7 @@ numa_realloc(struct virtio_net *dev, int index)
dev->virtqueue[index] = vq;
vhost_devices[dev->vid] = dev;
- if (old_vq != vq)
+ if (old_vq != vq && (dev->features & (1ULL << VIRTIO_F_IOMMU_PLATFORM)))
vhost_user_iotlb_init(dev, index);
return dev;
--
2.11.0
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2021-05-13 11:41 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-02 8:14 [dpdk-dev] [PATCH v2] vhost: avoid iotlb mempool allocation while IOMMU disabled Wan Junjie
2021-04-07 7:10 ` Xia, Chenbo
2021-05-13 8:39 ` David Marchand
2021-05-13 10:24 ` Xia, Chenbo
2021-05-13 10:51 ` [dpdk-dev] [External] " Wan Junjie
2021-05-13 10:58 ` Xia, Chenbo
2021-05-13 11:41 ` Xia, Chenbo
-- strict thread matches above, loose matches on Subject: below --
2021-01-29 16:39 [dpdk-dev] [PATCH] " Wan Junjie
2021-02-02 8:38 ` [dpdk-dev] [PATCH v2] " Wan Junjie
2021-02-03 2:26 ` Xia, Chenbo
2021-02-03 16:49 ` Maxime Coquelin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).