[dpdk-dev] [PATCH v4 1/8] virtio: hide phys addr check inside pci ops

2016-04-29 Thread Jianfeng Tan
This patch is to move phys addr check from virtio_dev_queue_setup to pci ops. To makt that happen, make sure virtio_ops.setup_queue return the result if we pass through the check. Signed-off-by: Huawei Xie Signed-off-by: Jianfeng Tan Acked-By: Neil Horman --- drivers/net/virtio/virtio_ethdev.c

[dpdk-dev] [PATCH v4 1/8] virtio: hide phys addr check inside pci ops

2016-05-11 Thread Yuanhan Liu
On Fri, Apr 29, 2016 at 01:18:29AM +, Jianfeng Tan wrote: > This patch is to move phys addr check from virtio_dev_queue_setup > to pci ops. To makt that happen, make sure virtio_ops.setup_queue > return the result if we pass through the check. > > Signed-off-by: Huawei Xie > Signed-off-by: Ji