be2net: Modify error message to incorporate subsystem
Modify IOCTL error message to print subsystem also. Signed-off-by: Vasundhara Volam <vasundhara.volam@emulex.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
b7e5887e0e
commit
97f1d8cd8d
@@ -122,15 +122,15 @@ static int be_mcc_compl_process(struct be_adapter *adapter,
|
|||||||
goto done;
|
goto done;
|
||||||
|
|
||||||
if (compl_status == MCC_STATUS_UNAUTHORIZED_REQUEST) {
|
if (compl_status == MCC_STATUS_UNAUTHORIZED_REQUEST) {
|
||||||
dev_warn(&adapter->pdev->dev, "This domain(VM) is not "
|
dev_warn(&adapter->pdev->dev,
|
||||||
"permitted to execute this cmd (opcode %d)\n",
|
"opcode %d-%d is not permitted\n",
|
||||||
opcode);
|
opcode, subsystem);
|
||||||
} else {
|
} else {
|
||||||
extd_status = (compl->status >> CQE_STATUS_EXTD_SHIFT) &
|
extd_status = (compl->status >> CQE_STATUS_EXTD_SHIFT) &
|
||||||
CQE_STATUS_EXTD_MASK;
|
CQE_STATUS_EXTD_MASK;
|
||||||
dev_err(&adapter->pdev->dev, "Cmd (opcode %d) failed:"
|
dev_err(&adapter->pdev->dev,
|
||||||
"status %d, extd-status %d\n",
|
"opcode %d-%d failed:status %d-%d\n",
|
||||||
opcode, compl_status, extd_status);
|
opcode, subsystem, compl_status, extd_status);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
done:
|
done:
|
||||||
|
Reference in New Issue
Block a user