qed: Increase verbosity of VF -> PF errors
VFs are currently logging errors when communicating with their PFs in a too-low verbosity that wouldn't be shown by default. As timeouts and failed commands are crucial for VF operability, make them appear by default. Signed-off-by: Yuval Mintz <Yuval.Mintz@cavium.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
f9fe1c12d1
commit
81e64ef673
|
@ -134,11 +134,17 @@ static int qed_send_msg2pf(struct qed_hwfn *p_hwfn, u8 *done, u32 resp_size)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!*done) {
|
if (!*done) {
|
||||||
DP_VERBOSE(p_hwfn, QED_MSG_IOV,
|
DP_NOTICE(p_hwfn,
|
||||||
"VF <-- PF Timeout [Type %d]\n",
|
"VF <-- PF Timeout [Type %d]\n",
|
||||||
p_req->first_tlv.tl.type);
|
p_req->first_tlv.tl.type);
|
||||||
rc = -EBUSY;
|
rc = -EBUSY;
|
||||||
} else {
|
} else {
|
||||||
|
if ((*done != PFVF_STATUS_SUCCESS) &&
|
||||||
|
(*done != PFVF_STATUS_NO_RESOURCE))
|
||||||
|
DP_NOTICE(p_hwfn,
|
||||||
|
"PF response: %d [Type %d]\n",
|
||||||
|
*done, p_req->first_tlv.tl.type);
|
||||||
|
else
|
||||||
DP_VERBOSE(p_hwfn, QED_MSG_IOV,
|
DP_VERBOSE(p_hwfn, QED_MSG_IOV,
|
||||||
"PF response: %d [Type %d]\n",
|
"PF response: %d [Type %d]\n",
|
||||||
*done, p_req->first_tlv.tl.type);
|
*done, p_req->first_tlv.tl.type);
|
||||||
|
|
Loading…
Reference in New Issue