Pass a flag to request kernel thread use. Fixes: 01fcb1cbc88e ("vhost: allow device that does not depend on vhost worker") Signed-off-by: Michael S. Tsirkin <mst at redhat.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 f55cb584b84a..12304eb8da15 100644 --- a/drivers/vhost/test.c +++ b/drivers/vhost/test.c @@ -122,7 +122,7 @@ static int vhost_test_open(struct inode *inode, struct file *f) 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 + 64, - VHOST_TEST_PKT_WEIGHT, VHOST_TEST_WEIGHT, NULL); + VHOST_TEST_PKT_WEIGHT, VHOST_TEST_WEIGHT, true, NULL); f->private_data = n; -- MST
On 2020/6/8 ??8:42, Michael S. Tsirkin wrote:> Pass a flag to request kernel thread use. > > Fixes: 01fcb1cbc88e ("vhost: allow device that does not depend on vhost worker") > Signed-off-by: Michael S. Tsirkin <mst at redhat.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 f55cb584b84a..12304eb8da15 100644 > --- a/drivers/vhost/test.c > +++ b/drivers/vhost/test.c > @@ -122,7 +122,7 @@ static int vhost_test_open(struct inode *inode, struct file *f) > 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 + 64, > - VHOST_TEST_PKT_WEIGHT, VHOST_TEST_WEIGHT, NULL); > + VHOST_TEST_PKT_WEIGHT, VHOST_TEST_WEIGHT, true, NULL); > > f->private_data = n; >Acked-by: Jason Wang <jasowang at redhat.com> Just to confirm, have you queued the doorbell mapping patches already? Or you expect I squash this into v2 of doorbell mapping series? Thanks
On 2020/6/9 ??1:53, Jason Wang wrote:> > On 2020/6/8 ??8:42, Michael S. Tsirkin wrote: >> Pass a flag to request kernel thread use. >> >> Fixes: 01fcb1cbc88e ("vhost: allow device that does not depend on >> vhost worker") >> Signed-off-by: Michael S. Tsirkin <mst at redhat.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 f55cb584b84a..12304eb8da15 100644 >> --- a/drivers/vhost/test.c >> +++ b/drivers/vhost/test.c >> @@ -122,7 +122,7 @@ static int vhost_test_open(struct inode *inode, >> struct file *f) >> ????? 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 + 64, >> -?????????????? VHOST_TEST_PKT_WEIGHT, VHOST_TEST_WEIGHT, NULL); >> +?????????????? VHOST_TEST_PKT_WEIGHT, VHOST_TEST_WEIGHT, true, NULL); >> ? ????? f->private_data = n; > > > Acked-by: Jason Wang <jasowang at redhat.com> > > Just to confirm, have you queued the doorbell mapping patches already? > Or you expect I squash this into v2 of doorbell mapping series?Ok, I saw the patches in your linux-next branch. Thanks> > Thanks >