void
ark_rqp_dump(struct ark_rqpace_t *rqp)
{
- if (rqp->err_count_other != 0)
+ if (rqp->err_count_other || rqp->cmpl_errors)
ARK_PMD_LOG(ERR,
"RQP Errors noted: ctrl: %d cplh_hmax %d cpld_max %d"
ARK_SU32
+ ARK_SU32
ARK_SU32 "\n",
rqp->ctrl, rqp->cplh_max, rqp->cpld_max,
"Error Count", rqp->err_cnt,
- "Error General", rqp->err_count_other);
+ "Error General", rqp->err_count_other,
+ "Cmpl Errors", rqp->cmpl_errors);
ARK_PMD_LOG(INFO, "RQP Dump: ctrl: %d cplh_hmax %d cpld_max %d"
ARK_SU32
volatile uint32_t cpld_pending_max;
volatile uint32_t err_count_other;
char eval[4];
- volatile int lasped;
+ volatile int32_t lasped;
+ volatile uint32_t cmpl_errors;
};
void ark_rqp_dump(struct ark_rqpace_t *rqp);