Re: [Qemu-devel] [PATCH v7 12/24] vhost: use a function for each call

2015-10-07 Thread Marc-André Lureau
Hi - Original Message - > > > > Hmm, there are no tests for multi-queue? I thought we had some, how did you > > test it then? > > For other reason I have launched a VM with multiqueue with your latest > patch series and I have encountered the bug. (easy to see as QEMU is > blocked for eve

Re: [Qemu-devel] [PATCH v7 12/24] vhost: use a function for each call

2015-10-07 Thread Thibaut Collet
On Wed, Oct 7, 2015 at 5:58 PM, Marc-André Lureau wrote: > Hi Thibaut > > - Original Message - >> On Thu, Oct 1, 2015 at 7:23 PM, wrote: >> > From: Marc-André Lureau >> > >> > Replace the generic vhost_call() by specific functions for each >> > function call to help with type safety and

Re: [Qemu-devel] [PATCH v7 12/24] vhost: use a function for each call

2015-10-07 Thread Marc-André Lureau
Hi Thibaut - Original Message - > On Thu, Oct 1, 2015 at 7:23 PM, wrote: > > From: Marc-André Lureau > > > > Replace the generic vhost_call() by specific functions for each > > function call to help with type safety and changing arguments. > > > > While doing this, I found that "unsigne

Re: [Qemu-devel] [PATCH v7 12/24] vhost: use a function for each call

2015-10-07 Thread Thibaut Collet
On Thu, Oct 1, 2015 at 7:23 PM, wrote: > From: Marc-André Lureau > > Replace the generic vhost_call() by specific functions for each > function call to help with type safety and changing arguments. > > While doing this, I found that "unsigned long long" and "uint64_t" were > used interchangeably

[Qemu-devel] [PATCH v7 12/24] vhost: use a function for each call

2015-10-01 Thread marcandre . lureau
From: Marc-André Lureau Replace the generic vhost_call() by specific functions for each function call to help with type safety and changing arguments. While doing this, I found that "unsigned long long" and "uint64_t" were used interchangeably and causing compilation warnings, using uint64_t ins