Re: [dpdk-dev] [PATCH v2] vhost: fix missing null dev pointer check

2020-07-20 Thread Ferruh Yigit
On 7/20/2020 4:55 PM, Maxime Coquelin wrote: > What about below title (we try to avoid passing variable names in commit > titles)? > vhost: fix missing device pointer validity check Existing commit dropped from next-net and patchwork status updated. > > On 7/16/20 5:37 PM, patrick...@intel.com w

Re: [dpdk-dev] [PATCH v2] vhost: fix missing null dev pointer check

2020-07-20 Thread Maxime Coquelin
What about below title (we try to avoid passing variable names in commit titles)? vhost: fix missing device pointer validity check On 7/16/20 5:37 PM, patrick...@intel.com wrote: > From: Patrick Fu > > This patch adds the check of dev pointer in vhost async enqueue > completion poll. If a NULL d

Re: [dpdk-dev] [PATCH v2] vhost: fix missing null dev pointer check

2020-07-17 Thread Ferruh Yigit
On 7/17/2020 9:08 AM, Xia, Chenbo wrote: > >> -Original Message- >> From: Fu, Patrick >> Sent: Thursday, July 16, 2020 11:38 PM >> To: dev@dpdk.org; maxime.coque...@redhat.com; Xia, Chenbo >> >> Cc: Fu, Patrick >> Subject: [PATCH v2] vhost: fix missing null dev pointer check >> >> From:

Re: [dpdk-dev] [PATCH v2] vhost: fix missing null dev pointer check

2020-07-17 Thread Xia, Chenbo
> -Original Message- > From: Fu, Patrick > Sent: Thursday, July 16, 2020 11:38 PM > To: dev@dpdk.org; maxime.coque...@redhat.com; Xia, Chenbo > > Cc: Fu, Patrick > Subject: [PATCH v2] vhost: fix missing null dev pointer check > > From: Patrick Fu > > This patch adds the check of dev

[dpdk-dev] [PATCH v2] vhost: fix missing null dev pointer check

2020-07-16 Thread patrick . fu
From: Patrick Fu This patch adds the check of dev pointer in vhost async enqueue completion poll. If a NULL dev pointer detected, the poll function returns immediately. Coverity issue: 360839 Fixes: cd6760da1076 ("vhost: introduce async enqueue for split ring") Signed-off-by: Patrick Fu --- v2