Messages in this thread Patch in this message |  | | From | Yang Shen <> | Subject | [PATCH 4/4] crypto: hisilicon/zip - fix the uninitalized 'curr_qm_qp_num' | Date | Sat, 25 Jul 2020 14:06:50 +0800 |
| |
From: Sihang Chen <chensihang1@hisilicon.com>
The 'qm->curr_qm_qp_num' is not initialized, which will result in failure to write the current_q file.
Signed-off-by: Sihang Chen <chensihang1@hisilicon.com> Signed-off-by: Yang Shen <shenyang39@huawei.com> Reviewed-by: Zhou Wang <wangzhou1@hisilicon.com> --- drivers/crypto/hisilicon/zip/zip_main.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/drivers/crypto/hisilicon/zip/zip_main.c b/drivers/crypto/hisilicon/zip/zip_main.c index cc4a829..47efc2f 100644 --- a/drivers/crypto/hisilicon/zip/zip_main.c +++ b/drivers/crypto/hisilicon/zip/zip_main.c @@ -762,6 +762,7 @@ static int hisi_zip_qm_init(struct hisi_qm *qm, struct pci_dev *pdev) if (qm->fun_type == QM_HW_PF) { qm->qp_base = HZIP_PF_DEF_Q_BASE; qm->qp_num = pf_q_num; + qm->debug.curr_qm_qp_num = pf_q_num; qm->qm_list = &zip_devices; } else if (qm->fun_type == QM_HW_VF && qm->ver == QM_HW_V1) { /* -- 2.7.4
|  |