* [PATCH 1/2] vhost/test: fix build for vhost test
@ 2019-08-28 5:36 Tiwei Bie
2019-08-28 5:37 ` [PATCH 2/2] " Tiwei Bie
2019-08-30 3:37 ` [PATCH 1/2] " Jason Wang
0 siblings, 2 replies; 4+ messages in thread
From: Tiwei Bie @ 2019-08-28 5:36 UTC (permalink / raw)
To: mst, jasowang; +Cc: kvm, virtualization, netdev, linux-kernel, stable
Since below commit, callers need to specify the iov_limit in
vhost_dev_init() explicitly.
Fixes: b46a0bf78ad7 ("vhost: fix OOB in get_rx_bufs()")
Cc: stable@vger.kernel.org
Signed-off-by: Tiwei Bie <tiwei.bie@intel.com>
---
drivers/vhost/test.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/vhost/test.c b/drivers/vhost/test.c
index 9e90e969af55..ac4f762c4f65 100644
--- a/drivers/vhost/test.c
+++ b/drivers/vhost/test.c
@@ -115,7 +115,7 @@ static int vhost_test_open(struct inode *inode, struct file *f)
dev = &n->dev;
vqs[VHOST_TEST_VQ] = &n->vqs[VHOST_TEST_VQ];
n->vqs[VHOST_TEST_VQ].handle_kick = handle_vq_kick;
- vhost_dev_init(dev, vqs, VHOST_TEST_VQ_MAX);
+ vhost_dev_init(dev, vqs, VHOST_TEST_VQ_MAX, UIO_MAXIOV);
f->private_data = n;
--
2.17.1
^ permalink raw reply [flat|nested] 4+ messages in thread* [PATCH 2/2] vhost/test: fix build for vhost test 2019-08-28 5:36 [PATCH 1/2] vhost/test: fix build for vhost test Tiwei Bie @ 2019-08-28 5:37 ` Tiwei Bie 2019-08-30 3:38 ` Jason Wang 2019-08-30 3:37 ` [PATCH 1/2] " Jason Wang 1 sibling, 1 reply; 4+ messages in thread From: Tiwei Bie @ 2019-08-28 5:37 UTC (permalink / raw) To: mst, jasowang; +Cc: kvm, virtualization, netdev, linux-kernel, stable Since vhost_exceeds_weight() was introduced, callers need to specify the packet weight and byte weight in vhost_dev_init(). Note that, the packet weight isn't counted in this patch to keep the original behavior unchanged. Fixes: e82b9b0727ff ("vhost: introduce vhost_exceeds_weight()") Cc: stable@vger.kernel.org Signed-off-by: Tiwei Bie <tiwei.bie@intel.com> --- drivers/vhost/test.c | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/drivers/vhost/test.c b/drivers/vhost/test.c index ac4f762c4f65..7804869c6a31 100644 --- a/drivers/vhost/test.c +++ b/drivers/vhost/test.c @@ -22,6 +22,12 @@ * Using this limit prevents one virtqueue from starving others. */ #define VHOST_TEST_WEIGHT 0x80000 +/* Max number of packets transferred before requeueing the job. + * Using this limit prevents one virtqueue from starving others with + * pkts. + */ +#define VHOST_TEST_PKT_WEIGHT 256 + enum { VHOST_TEST_VQ = 0, VHOST_TEST_VQ_MAX = 1, @@ -80,10 +86,8 @@ static void handle_vq(struct vhost_test *n) } vhost_add_used_and_signal(&n->dev, vq, head, 0); total_len += len; - if (unlikely(total_len >= VHOST_TEST_WEIGHT)) { - vhost_poll_queue(&vq->poll); + if (unlikely(vhost_exceeds_weight(vq, 0, total_len))) break; - } } mutex_unlock(&vq->mutex); @@ -115,7 +119,8 @@ static int vhost_test_open(struct inode *inode, struct file *f) dev = &n->dev; vqs[VHOST_TEST_VQ] = &n->vqs[VHOST_TEST_VQ]; n->vqs[VHOST_TEST_VQ].handle_kick = handle_vq_kick; - vhost_dev_init(dev, vqs, VHOST_TEST_VQ_MAX, UIO_MAXIOV); + vhost_dev_init(dev, vqs, VHOST_TEST_VQ_MAX, UIO_MAXIOV, + VHOST_TEST_PKT_WEIGHT, VHOST_TEST_WEIGHT); f->private_data = n; -- 2.17.1 ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 2/2] vhost/test: fix build for vhost test 2019-08-28 5:37 ` [PATCH 2/2] " Tiwei Bie @ 2019-08-30 3:38 ` Jason Wang 0 siblings, 0 replies; 4+ messages in thread From: Jason Wang @ 2019-08-30 3:38 UTC (permalink / raw) To: Tiwei Bie, mst; +Cc: kvm, virtualization, netdev, linux-kernel, stable On 2019/8/28 下午1:37, Tiwei Bie wrote: > Since vhost_exceeds_weight() was introduced, callers need to specify > the packet weight and byte weight in vhost_dev_init(). Note that, the > packet weight isn't counted in this patch to keep the original behavior > unchanged. > > Fixes: e82b9b0727ff ("vhost: introduce vhost_exceeds_weight()") > Cc: stable@vger.kernel.org > Signed-off-by: Tiwei Bie <tiwei.bie@intel.com> > --- > drivers/vhost/test.c | 13 +++++++++---- > 1 file changed, 9 insertions(+), 4 deletions(-) > > diff --git a/drivers/vhost/test.c b/drivers/vhost/test.c > index ac4f762c4f65..7804869c6a31 100644 > --- a/drivers/vhost/test.c > +++ b/drivers/vhost/test.c > @@ -22,6 +22,12 @@ > * Using this limit prevents one virtqueue from starving others. */ > #define VHOST_TEST_WEIGHT 0x80000 > > +/* Max number of packets transferred before requeueing the job. > + * Using this limit prevents one virtqueue from starving others with > + * pkts. > + */ > +#define VHOST_TEST_PKT_WEIGHT 256 > + > enum { > VHOST_TEST_VQ = 0, > VHOST_TEST_VQ_MAX = 1, > @@ -80,10 +86,8 @@ static void handle_vq(struct vhost_test *n) > } > vhost_add_used_and_signal(&n->dev, vq, head, 0); > total_len += len; > - if (unlikely(total_len >= VHOST_TEST_WEIGHT)) { > - vhost_poll_queue(&vq->poll); > + if (unlikely(vhost_exceeds_weight(vq, 0, total_len))) > break; > - } > } > > mutex_unlock(&vq->mutex); > @@ -115,7 +119,8 @@ static int vhost_test_open(struct inode *inode, struct file *f) > dev = &n->dev; > vqs[VHOST_TEST_VQ] = &n->vqs[VHOST_TEST_VQ]; > n->vqs[VHOST_TEST_VQ].handle_kick = handle_vq_kick; > - vhost_dev_init(dev, vqs, VHOST_TEST_VQ_MAX, UIO_MAXIOV); > + vhost_dev_init(dev, vqs, VHOST_TEST_VQ_MAX, UIO_MAXIOV, > + VHOST_TEST_PKT_WEIGHT, VHOST_TEST_WEIGHT); > > f->private_data = n; > Acked-by: Jason Wang <jasowang@redhat.com> ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 1/2] vhost/test: fix build for vhost test 2019-08-28 5:36 [PATCH 1/2] vhost/test: fix build for vhost test Tiwei Bie 2019-08-28 5:37 ` [PATCH 2/2] " Tiwei Bie @ 2019-08-30 3:37 ` Jason Wang 1 sibling, 0 replies; 4+ messages in thread From: Jason Wang @ 2019-08-30 3:37 UTC (permalink / raw) To: Tiwei Bie, mst; +Cc: kvm, virtualization, netdev, linux-kernel, stable [-- Attachment #1: Type: text/plain, Size: 952 bytes --] On 2019/8/28 下午1:36, Tiwei Bie wrote: > Since below commit, callers need to specify the iov_limit in > vhost_dev_init() explicitly. > > Fixes: b46a0bf78ad7 ("vhost: fix OOB in get_rx_bufs()") > Cc: stable@vger.kernel.org > Signed-off-by: Tiwei Bie <tiwei.bie@intel.com> > --- > drivers/vhost/test.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/vhost/test.c b/drivers/vhost/test.c > index 9e90e969af55..ac4f762c4f65 100644 > --- a/drivers/vhost/test.c > +++ b/drivers/vhost/test.c > @@ -115,7 +115,7 @@ static int vhost_test_open(struct inode *inode, struct file *f) > dev = &n->dev; > vqs[VHOST_TEST_VQ] = &n->vqs[VHOST_TEST_VQ]; > n->vqs[VHOST_TEST_VQ].handle_kick = handle_vq_kick; > - vhost_dev_init(dev, vqs, VHOST_TEST_VQ_MAX); > + vhost_dev_init(dev, vqs, VHOST_TEST_VQ_MAX, UIO_MAXIOV); > > f->private_data = n; > Acked-by: Jason Wang <jasowang@redhat.com> [-- Attachment #2: pEpkey.asc --] [-- Type: application/pgp-keys, Size: 2493 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2019-08-30 3:38 UTC | newest] Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 2019-08-28 5:36 [PATCH 1/2] vhost/test: fix build for vhost test Tiwei Bie 2019-08-28 5:37 ` [PATCH 2/2] " Tiwei Bie 2019-08-30 3:38 ` Jason Wang 2019-08-30 3:37 ` [PATCH 1/2] " Jason Wang
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®