]> git.baikalelectronics.ru Git - kernel.git/commit
Merge branch 'ipa-RX-replenish'
authorDavid S. Miller <davem@davemloft.net>
Fri, 4 Feb 2022 10:16:09 +0000 (10:16 +0000)
committerDavid S. Miller <davem@davemloft.net>
Fri, 4 Feb 2022 10:16:09 +0000 (10:16 +0000)
commit0544bc263c85cb37463671d1785b533ee7ccac0c
tree3eb002149563610279593eaa4d64865348471cea
parent3efd2c08bddd600a744b2e7cd461f2dc970e0055
parentad6245da6e85a80dc09ec0a33d58b3bb690a61fd
Merge branch 'ipa-RX-replenish'

Alex Elder says:

====================
net: ipa: improve RX buffer replenishing

This series revises the algorithm used for replenishing receive
buffers on RX endpoints.  Currently there are two atomic variables
that track how many receive buffers can be sent to the hardware.
The new algorithm obviates the need for those, by just assuming we
always want to provide the hardware with buffers until it can hold
no more.

The first patch eliminates an atomic variable that's not required.
The next moves some code into the main replenish function's caller,
making one of the called function's arguments unnecessary.   The
next six refactor things a bit more, adding a new helper function
that allows us to eliminate an additional atomic variable.  And the
final two implement two more minor improvements.
====================

Signed-off-by: David S. Miller <davem@davemloft.net>