Message ID | 20210815110639.20131-1-smalin@marvell.com |
---|---|
State | New |
Headers | show |
Series | [v2] qed: Fix null-pointer dereference in qed_rdma_create_qp() | expand |
Hello: This patch was applied to netdev/net.git (refs/heads/master): On Sun, 15 Aug 2021 14:06:39 +0300 you wrote: > 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> > > [...] Here is the summary with links: - [v2] qed: Fix null-pointer dereference in qed_rdma_create_qp() https://git.kernel.org/netdev/net/c/d33d19d313d3 You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html
diff --git a/drivers/net/ethernet/qlogic/qed/qed_rdma.c b/drivers/net/ethernet/qlogic/qed/qed_rdma.c index da864d12916b..4f4b79250a2b 100644 --- a/drivers/net/ethernet/qlogic/qed/qed_rdma.c +++ b/drivers/net/ethernet/qlogic/qed/qed_rdma.c @@ -1285,8 +1285,7 @@ qed_rdma_create_qp(void *rdma_cxt, if (!rdma_cxt || !in_params || !out_params || !p_hwfn->p_rdma_info->active) { - DP_ERR(p_hwfn->cdev, - "qed roce create qp failed due to NULL entry (rdma_cxt=%p, in=%p, out=%p, roce_info=?\n", + pr_err("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); return NULL; }