* [dpdk-dev] [dpdk-dev PATCH] raw/octeontx2_ep: fix coverity scan reported defects
@ 2020-01-27 13:18 Mahipal Challa
2020-02-06 15:51 ` Thomas Monjalon
0 siblings, 1 reply; 2+ messages in thread
From: Mahipal Challa @ 2020-01-27 13:18 UTC (permalink / raw)
To: thomas, dev; +Cc: jerinj, pathreya, snilla, venkatn, Gavin.Hu
Defects reported by coverity scan are resolved.
Coverity issue: CID 353611 - Error handling.
Coverity issue: CID 353622 - Error handling.
Coverity issue: CID 353632 - NULL pointer dereference.
Signed-off-by: Mahipal Challa <mchalla@marvell.com>
---
drivers/raw/octeontx2_ep/otx2_ep_enqdeq.c | 18 ++++++++++--------
1 file changed, 10 insertions(+), 8 deletions(-)
diff --git a/drivers/raw/octeontx2_ep/otx2_ep_enqdeq.c b/drivers/raw/octeontx2_ep/otx2_ep_enqdeq.c
index 1ba27c9..9f1e5ed 100644
--- a/drivers/raw/octeontx2_ep/otx2_ep_enqdeq.c
+++ b/drivers/raw/octeontx2_ep/otx2_ep_enqdeq.c
@@ -257,8 +257,8 @@
void *buf;
for (idx = 0; idx < droq->nb_desc; idx++) {
- rte_mempool_get(sdpvf->enqdeq_mpool, &buf);
- if (buf == NULL) {
+ if (rte_mempool_get(sdpvf->enqdeq_mpool, &buf) ||
+ (buf == NULL)) {
otx2_err("OQ buffer alloc failed");
droq->stats.rx_alloc_failure++;
/* sdp_droq_destroy_ring_buffers(droq);*/
@@ -662,11 +662,11 @@
if (droq->recv_buf_list[droq->refill_idx].buffer != NULL)
break;
- rte_mempool_get(sdpvf->enqdeq_mpool, &buf);
- /* If a buffer could not be allocated, no point in
- * continuing
- */
- if (buf == NULL) {
+ if (rte_mempool_get(sdpvf->enqdeq_mpool, &buf) ||
+ (buf == NULL)) {
+ /* If a buffer could not be allocated, no point in
+ * continuing
+ */
droq->stats.rx_alloc_failure++;
break;
}
@@ -780,7 +780,7 @@
droq = sdpvf->droq[q_no];
if (!droq) {
otx2_err("Invalid droq[%d]", q_no);
- goto deq_fail;
+ goto droq_err;
}
/* Grab the lock */
@@ -840,5 +840,7 @@
deq_fail:
rte_spinlock_unlock(&droq->lock);
+
+droq_err:
return SDP_OQ_RECV_FAILED;
}
--
1.8.3.1
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2020-02-06 15:51 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-27 13:18 [dpdk-dev] [dpdk-dev PATCH] raw/octeontx2_ep: fix coverity scan reported defects Mahipal Challa
2020-02-06 15:51 ` Thomas Monjalon
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).