net/vmxnet3: fix dereference before null check
Coverity reports check_after_deref:
Null-checking rq suggests that it may be null, but it
has already been dereferenced on all paths leading to
the check.
This patch removes NULL checking of "rq" from function
vmxnet3_dev_rx_queue_reset as it is already checked against NULL
one level up the callstack (function vmxnet3_dev_clear_queues).
Coverity issue: 143468
Fixes: 5aecdc17a9
("vmxnet3: fix stop/restart")
Cc: stable@dpdk.org
Signed-off-by: Tomasz Kulasek <tomaszx.kulasek@intel.com>
Signed-off-by: Michal Jastrzebski <michalx.k.jastrzebski@intel.com>
Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
This commit is contained in:
parent
d2654a6a92
commit
4d0833e6f8
@ -265,11 +265,9 @@ vmxnet3_dev_rx_queue_reset(void *rxq)
|
||||
struct vmxnet3_rx_data_ring *data_ring = &rq->data_ring;
|
||||
int size;
|
||||
|
||||
if (rq != NULL) {
|
||||
/* Release both the cmd_rings mbufs */
|
||||
for (i = 0; i < VMXNET3_RX_CMDRING_SIZE; i++)
|
||||
vmxnet3_rx_cmd_ring_release_mbufs(&rq->cmd_ring[i]);
|
||||
}
|
||||
/* Release both the cmd_rings mbufs */
|
||||
for (i = 0; i < VMXNET3_RX_CMDRING_SIZE; i++)
|
||||
vmxnet3_rx_cmd_ring_release_mbufs(&rq->cmd_ring[i]);
|
||||
|
||||
ring0 = &rq->cmd_ring[0];
|
||||
ring1 = &rq->cmd_ring[1];
|
||||
|
Loading…
Reference in New Issue
Block a user