mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-29 15:43:59 +08:00
s390/qeth: remove QETH_QDIO_BUF_HANDLED_DELAYED state
Reuse the QETH_QDIO_BUF_EMPTY state to indicate that a TX buffer has been completed with a QAOB notification, and may be cleaned up by qeth_cleanup_handled_pending(). Signed-off-by: Julian Wiedmann <jwi@linux.ibm.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
db4ffdcef7
commit
75cf3854dc
@ -424,8 +424,6 @@ enum qeth_qdio_out_buffer_state {
|
||||
/* Received QAOB notification on CQ: */
|
||||
QETH_QDIO_BUF_QAOB_OK,
|
||||
QETH_QDIO_BUF_QAOB_ERROR,
|
||||
/* Handled via transfer pending / completion queue. */
|
||||
QETH_QDIO_BUF_HANDLED_DELAYED,
|
||||
};
|
||||
|
||||
struct qeth_qdio_out_buffer {
|
||||
|
@ -477,8 +477,7 @@ static void qeth_cleanup_handled_pending(struct qeth_qdio_out_q *q, int bidx,
|
||||
|
||||
while (c) {
|
||||
if (forced_cleanup ||
|
||||
atomic_read(&c->state) ==
|
||||
QETH_QDIO_BUF_HANDLED_DELAYED) {
|
||||
atomic_read(&c->state) == QETH_QDIO_BUF_EMPTY) {
|
||||
struct qeth_qdio_out_buffer *f = c;
|
||||
|
||||
QETH_CARD_TEXT(f->q->card, 5, "fp");
|
||||
@ -549,7 +548,7 @@ static void qeth_qdio_handle_aob(struct qeth_card *card,
|
||||
kmem_cache_free(qeth_core_header_cache, data);
|
||||
}
|
||||
|
||||
atomic_set(&buffer->state, QETH_QDIO_BUF_HANDLED_DELAYED);
|
||||
atomic_set(&buffer->state, QETH_QDIO_BUF_EMPTY);
|
||||
break;
|
||||
default:
|
||||
WARN_ON_ONCE(1);
|
||||
|
Loading…
Reference in New Issue
Block a user