This commit changes 2 error messages to better
describe cq_weight related errors, should one occur.
Fixes: ffa46fc4a2b5 ("event/dlb2: support CQ weight")
Cc: stable@dpdk.org
Signed-off-by: Timothy McDaniel <timothy.mcdaniel@intel.com>
if (dlb2->version == DLB2_HW_V2 && ev_port->cq_weight != 0 &&
ev_port->cq_weight > dequeue_depth) {
- DLB2_LOG_ERR("dlb2: invalid cq depth, must be >= cq weight%d\n",
- DLB2_MIN_ENQUEUE_DEPTH);
+ DLB2_LOG_ERR("dlb2: invalid cq dequeue depth %d, must be >= cq weight %d\n",
+ dequeue_depth, ev_port->cq_weight);
return -EINVAL;
}
struct dlb2_ldb_port *port;
if (hw->ver == DLB2_HW_V2) {
+ DLB2_HW_ERR(hw,
+ "[%s():%d] CQ weight feature requires DLB 2.5 or later\n",
+ __func__, __LINE__);
resp->status = DLB2_ST_FEATURE_UNAVAILABLE;
return -EINVAL;
}