Re: RFC: vioif(4) multiqueue support

2019-01-06 Thread Shoichi Yamaguchi
Hi all, I'm going to commit the changes on this weekend. Regards, Yamaguchi 2018年12月28日(金) 15:36 Shoichi Yamaguchi : > > > > > > https://ftp.netbsd.org/pub/NetBSD/misc/yamaguchi/vioif_mutilq.patch > > I have updated the patch. > > > 2018年12月26日(水) 17:20 s ymgch : > > > > Thank you for your

Re: RFC: vioif(4) multiqueue support

2018-12-28 Thread Shoichi Yamaguchi
> > > > https://ftp.netbsd.org/pub/NetBSD/misc/yamaguchi/vioif_mutilq.patch I have updated the patch. 2018年12月26日(水) 17:20 s ymgch : > > Thank you for your helpful comments! > > > 2018年12月26日(水) 11:37 Taylor R Campbell : > > > > > Date: Wed, 26 Dec 2018 10:03:15 +0900 > > > From: Shoichi

Re: RFC: vioif(4) multiqueue support

2018-12-26 Thread s ymgch
Thank you for your helpful comments! 2018年12月26日(水) 11:37 Taylor R Campbell : > > > Date: Wed, 26 Dec 2018 10:03:15 +0900 > > From: Shoichi Yamaguchi > > > > > I implemented a patch that make vioif(4) support multi-queue. And I have > > > put > > > the patch on ftp.n.o. I used vioif(4)

Re: RFC: vioif(4) multiqueue support

2018-12-26 Thread Shoichi Yamaguchi
Hi, 2018年12月18日(火) 9:35 Shoichi Yamaguchi : > > Hi all, > > I implemented a patch that make vioif(4) support multi-queue. And I have put > the patch on ftp.n.o. I used vioif(4) multiqueue on qemu-kvm on Linux kernel > 4.19.5. And It seems to be working fine. > >

Re: RFC: vioif(4) multiqueue support

2018-12-25 Thread Joerg Sonnenberger
On Wed, Dec 26, 2018 at 02:37:02AM +, Taylor R Campbell wrote: > > +static int > > +vioif_alloc_queues(struct vioif_softc *sc) > > +{ > > + int nvq_pairs = sc->sc_max_nvq_pairs; > > + int nvqs = nvq_pairs * 2; > > + int i; > > + > > + sc->sc_rxq = kmem_zalloc(sizeof(sc->sc_rxq[0]) *

Re: RFC: vioif(4) multiqueue support

2018-12-25 Thread Taylor R Campbell
> Date: Wed, 26 Dec 2018 10:03:15 +0900 > From: Shoichi Yamaguchi > > > I implemented a patch that make vioif(4) support multi-queue. And I have put > > the patch on ftp.n.o. I used vioif(4) multiqueue on qemu-kvm on Linux kernel > > 4.19.5. And It seems to be working fine. > > > >

RFC: vioif(4) multiqueue support

2018-12-18 Thread Shoichi Yamaguchi
Hi all, I implemented a patch that make vioif(4) support multi-queue. And I have put the patch on ftp.n.o. I used vioif(4) multiqueue on qemu-kvm on Linux kernel 4.19.5. And It seems to be working fine. https://ftp.netbsd.org/pub/NetBSD/misc/yamaguchi/vioif_mutilq.patch The summary of the