]> git.baikalelectronics.ru Git - kernel.git/commit
Merge branch 'asix-rx-mem-handling'
authorDavid S. Miller <davem@davemloft.net>
Mon, 5 Oct 2015 13:58:51 +0000 (06:58 -0700)
committerDavid S. Miller <davem@davemloft.net>
Mon, 5 Oct 2015 13:58:51 +0000 (06:58 -0700)
commit67ca6bb4a1b950d20280b2c135e073e5b2ce2038
tree42370c6d0d40944bbe9244f8f866a86f2b769ea4
parent423acc2c4e46073201dd93f044d1acd4ee5556f8
parent9790e753d2f369755fdd9b1dadb40d36e1d8108f
Merge branch 'asix-rx-mem-handling'

Mark Craske says:

====================
Improve ASIX RX memory allocation error handling

The ASIX RX handler algorithm is weak on error handling.
There is a design flaw in the ASIX RX handler algorithm because the
implementation for handling RX Ethernet frames for the DUB-E100 C1 can
have Ethernet frames spanning multiple URBs. This means that payload data
from more than 1 URB is sometimes needed to fill the socket buffer with a
complete Ethernet frame. When the URB with the start of an Ethernet frame
is received then an attempt is made to allocate a socket buffer. If the
memory allocation fails then the algorithm sets the buffer pointer member
to NULL and the function exits (no crash yet). Subsequently, the RX hander
is called again to process the next URB which assumes there is a socket
buffer available and the kernel crashes when there is no buffer.

This patchset implements an improvement to the RX handling algorithm to
avoid a crash when no memory is available for the socket buffer.

The patchset will apply cleanly to the net-next master branch but the
created kernel has not been tested. The driver was tested on ARM kernels
v3.8 and v3.14 for a commercial product.
====================

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