Re: [PATCH 1/5] vhost: factor out IOTLB

2020-01-17 Thread kbuild test robot
Hi Jason, I love your patch! Yet something to improve: [auto build test ERROR on vhost/linux-next] [also build test ERROR on linux/master linus/master v5.5-rc6 next-20200117] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system. BTW, we also suggest to

Re: [PATCH 1/5] vhost: factor out IOTLB

2020-01-17 Thread kbuild test robot
Hi Jason, I love your patch! Yet something to improve: [auto build test ERROR on vhost/linux-next] [also build test ERROR on linux/master linus/master v5.5-rc6 next-20200117] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system. BTW, we also suggest to

Re: [PATCH 1/5] vhost: factor out IOTLB

2020-01-17 Thread Jason Wang
On 2020/1/17 下午12:14, Randy Dunlap wrote: On 1/16/20 4:42 AM, Jason Wang wrote: diff --git a/drivers/vhost/Kconfig b/drivers/vhost/Kconfig index 3d03ccbd1adc..f21c45aa5e07 100644 --- a/drivers/vhost/Kconfig +++ b/drivers/vhost/Kconfig @@ -36,6 +36,7 @@ config VHOST_VSOCK config VHOST

Re: [PATCH 1/5] vhost: factor out IOTLB

2020-01-16 Thread Randy Dunlap
On 1/16/20 4:42 AM, Jason Wang wrote: > diff --git a/drivers/vhost/Kconfig b/drivers/vhost/Kconfig > index 3d03ccbd1adc..f21c45aa5e07 100644 > --- a/drivers/vhost/Kconfig > +++ b/drivers/vhost/Kconfig > @@ -36,6 +36,7 @@ config VHOST_VSOCK > > config VHOST > tristate > +depends on

[PATCH 1/5] vhost: factor out IOTLB

2020-01-16 Thread Jason Wang
This patch factors out IOTLB into a dedicated module in order to be reused by other modules like vringh. User may choose to enable the automatic retiring by specifying VHOST_IOTLB_FLAG_RETIRE flag to fit for the case of vhost device IOTLB implementation. Signed-off-by: Jason Wang --- MAINTAINERS