Re: [PATCH vhost next 10/10] vdpa/mlx5: Add VDPA driver for supported mlx5 devices

2020-07-17 Thread Jason Wang
On 2020/7/16 下午7:54, Eli Cohen wrote: On Thu, Jul 16, 2020 at 05:14:32PM +0800, Jason Wang wrote: +static void suspend_vqs(struct mlx5_vdpa_net *ndev) +{ + int i; + + for (i = 0; i < MLX5_MAX_SUPPORTED_VQS; i++) + suspend_vq(ndev, >vqs[i]); In teardown_virtqueues()

Re: [PATCH V2 4/6] vhost_vdpa: implement IRQ offloading in vhost_vdpa

2020-07-17 Thread kernel test robot
-20200717 (attached as .config) compiler: or1k-linux-gcc (GCC) 9.3.0 reproduce (this is a W=1 build): wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross chmod +x ~/bin/make.cross # save the attached .config to linux build tree

Re: [PATCH] virtio_ring: use alloc_pages_node for NUMA-aware allocation

2020-07-17 Thread kernel test robot
in https://git-scm.com/docs/git-format-patch] url: https://github.com/0day-ci/linux/commits/Shile-Zhang/virtio_ring-use-alloc_pages_node-for-NUMA-aware-allocation/20200717-173734 base: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git 8882572675c1bb1cc544f4e229a11661f1fc52e4

Re: [PATCH] virtio_ring: use alloc_pages_node for NUMA-aware allocation

2020-07-17 Thread kernel test robot
in https://git-scm.com/docs/git-format-patch] url: https://github.com/0day-ci/linux/commits/Shile-Zhang/virtio_ring-use-alloc_pages_node-for-NUMA-aware-allocation/20200717-173734 base: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git 8882572675c1bb1cc544f4e229a11661f1fc52e4

Re: [PATCH V2 2/6] kvm: detect assigned device via irqbypass manager

2020-07-17 Thread Alex Williamson
On Thu, 16 Jul 2020 19:23:45 +0800 Zhu Lingshan wrote: > vDPA devices has dedicated backed hardware like > passthrough-ed devices. Then it is possible to setup irq > offloading to vCPU for vDPA devices. Thus this patch tries to > manipulated assigned device counters via irqbypass manager. > >