qed: Fix null-pointer dereference in qed_rdma_create_qp()
[ Upstream commit d33d19d313d3466abdf8b0428be7837aff767802 ] Fix a possible null-pointer dereference in qed_rdma_create_qp(). Changes from V2: - Revert checkpatch fixes. Reported-by: TOTE Robot <oslab@tsinghua.edu.cn> Signed-off-by: Ariel Elior <aelior@marvell.com> Signed-off-by: Shai Malin <smalin@marvell.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:

committed by
Greg Kroah-Hartman

parent
18a65ba069
commit
cc126b400b
@@ -1285,8 +1285,7 @@ qed_rdma_create_qp(void *rdma_cxt,
|
|||||||
|
|
||||||
if (!rdma_cxt || !in_params || !out_params ||
|
if (!rdma_cxt || !in_params || !out_params ||
|
||||||
!p_hwfn->p_rdma_info->active) {
|
!p_hwfn->p_rdma_info->active) {
|
||||||
DP_ERR(p_hwfn->cdev,
|
pr_err("qed roce create qp failed due to NULL entry (rdma_cxt=%p, in=%p, out=%p, roce_info=?\n",
|
||||||
"qed roce create qp failed due to NULL entry (rdma_cxt=%p, in=%p, out=%p, roce_info=?\n",
|
|
||||||
rdma_cxt, in_params, out_params);
|
rdma_cxt, in_params, out_params);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user