diff options
author | Julian Wiedmann <jwi@linux.ibm.com> | 2020-03-25 10:34:57 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-03-25 12:07:15 -0700 |
commit | ed13615dd32690ca2a9d1f730a596f950eafd905 (patch) | |
tree | bd42e8da429767c02521eefd0abb61fdcc175787 /drivers/s390/net/qeth_core.h | |
parent | 29f3490ba9d2399d3d1b20c4aa74592d92bd4e11 (diff) | |
download | linux-ed13615dd32690ca2a9d1f730a596f950eafd905.tar.gz linux-ed13615dd32690ca2a9d1f730a596f950eafd905.tar.bz2 linux-ed13615dd32690ca2a9d1f730a596f950eafd905.zip |
s390/qeth: simplify RX buffer tracking
Since RX buffers may contain multiple packets, qeth's NAPI poll code can
exhaust its budget in the middle of an RX buffer. Thus we keep track of
our current position within the active RX buffer, so we can resume
processing here in the next NAPI poll period.
Clean up that code by tracking the index of the active buffer element,
instead of a pointer to it.
Also simplify the code that advances to the next RX buffer when the
current buffer has been fully processed.
v2: - remove QDIO_ELEMENT_NO() macro (davem)
Signed-off-by: Julian Wiedmann <jwi@linux.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/s390/net/qeth_core.h')
-rw-r--r-- | drivers/s390/net/qeth_core.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/s390/net/qeth_core.h b/drivers/s390/net/qeth_core.h index 6eb431c194bd..9840d4fab010 100644 --- a/drivers/s390/net/qeth_core.h +++ b/drivers/s390/net/qeth_core.h @@ -752,7 +752,7 @@ enum qeth_addr_disposition { struct qeth_rx { int b_count; int b_index; - struct qdio_buffer_element *b_element; + u8 buf_element; int e_offset; int qdio_err; }; |