mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-17 09:57:46 +07:00
s390/qeth: don't mask TX errors on IQD devices
Current code suppresses debug entries when an TX buffer completes in
ERROR state with no error indication set in SBALF15.
This was introduced back with
commit 58490f1807
("qeth: HiperSockets SIGA retry support on CC=2.").
But qeth no longer retries after CC=2, and this sort of suppression
make no sense anymore. Remove it.
Signed-off-by: Julian Wiedmann <jwi@linux.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
11817aa69b
commit
e8b1116118
@ -3236,13 +3236,6 @@ static void qeth_handle_send_error(struct qeth_card *card,
|
||||
int sbalf15 = buffer->buffer->element[15].sflags;
|
||||
|
||||
QETH_CARD_TEXT(card, 6, "hdsnderr");
|
||||
if (IS_IQD(card)) {
|
||||
if (sbalf15 == 0) {
|
||||
qdio_err = 0;
|
||||
} else {
|
||||
qdio_err = 1;
|
||||
}
|
||||
}
|
||||
qeth_check_qdio_errors(card, buffer->buffer, qdio_err, "qouterr");
|
||||
|
||||
if (!qdio_err)
|
||||
|
Loading…
Reference in New Issue
Block a user