crypto/cnxk: change adapter datapath error log to debug

Errors in crypto adapter datapath can be handled gracefully. So the
error print can be moved under debug.

Signed-off-by: Shijith Thotton <sthotton@marvell.com>
Acked-by: Akhil Goyal <gakhil@marvell.com>
This commit is contained in:
Shijith Thotton 2022-08-09 16:23:54 +05:30 committed by Akhil Goyal
parent 1ceb66a1e4
commit bfce22f1f9
2 changed files with 3 additions and 1 deletions

View File

@ -272,6 +272,8 @@ extern int cnxk_logtype_ree;
RTE_LOG_DP(ERR, PMD, "%s():%u " fmt "\n", __func__, __LINE__, ##args)
#define plt_dp_info(fmt, args...) \
RTE_LOG_DP(INFO, PMD, "%s():%u " fmt "\n", __func__, __LINE__, ##args)
#define plt_dp_dbg(fmt, args...) \
RTE_LOG_DP(DEBUG, PMD, "%s():%u " fmt "\n", __func__, __LINE__, ##args)
#ifdef __cplusplus
#define CNXK_PCI_ID(subsystem_dev, dev) \

View File

@ -412,7 +412,7 @@ ca_lmtst_burst_submit(struct cn10k_sso_hws *ws, uint64_t w2[], struct cnxk_cpt_q
ret = cn10k_cpt_fill_inst(qp, &op[i], inst, infl_req);
if (unlikely(ret != 1)) {
plt_dp_err("Could not process op: %p", op[i]);
plt_dp_dbg("Could not process op: %p", op[i]);
if (i != 0)
goto submit;
else