Re: [dpdk-dev] [PATCH] net/ifcvf: do not panic in address translation

2018-04-23 Thread Ferruh Yigit
On 4/20/2018 4:15 PM, Xiao Wang wrote: > Driver should return error and report error message rather than call > rte_panic(). > > Signed-off-by: Xiao Wang Squashed into relevant commit in next-net [1], thanks. [1] 3c67b5fca918 ("net/ifcvf: add ifcvf vdpa driver")

[dpdk-dev] [PATCH] net/ifcvf: do not panic in address translation

2018-04-20 Thread Xiao Wang
Driver should return error and report error message rather than call rte_panic(). Signed-off-by: Xiao Wang --- drivers/net/ifc/ifcvf_vdpa.c | 30 ++ 1 file changed, 22 insertions(+), 8 deletions(-) diff --git a/drivers/net/ifc/ifcvf_vdpa.c b/drivers/net/ifc/ifcvf_vdp