2.6.37-stable review patch. If anyone has any objections, please let us know.
------------------ From: Francois Romieu <[email protected]> commit f60ac8e7ab7cbb413a0131d5665b053f9f386526 upstream. While the RxFIFO interruption is masked for most 8168, nothing prevents it to appear in the irq status word. This is no excuse to crash. Signed-off-by: Francois Romieu <[email protected]> Cc: Ivan Vecera <[email protected]> Cc: Hayes <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]> --- drivers/net/r8169.c | 8 ++++++++ 1 file changed, 8 insertions(+) --- a/drivers/net/r8169.c +++ b/drivers/net/r8169.c @@ -4613,6 +4613,14 @@ static irqreturn_t rtl8169_interrupt(int netif_stop_queue(dev); rtl8169_tx_timeout(dev); goto done; + /* Testers needed. */ + case RTL_GIGA_MAC_VER_17: + case RTL_GIGA_MAC_VER_19: + case RTL_GIGA_MAC_VER_20: + case RTL_GIGA_MAC_VER_21: + case RTL_GIGA_MAC_VER_23: + case RTL_GIGA_MAC_VER_24: + case RTL_GIGA_MAC_VER_27: /* Experimental science. Pktgen proof. */ case RTL_GIGA_MAC_VER_12: case RTL_GIGA_MAC_VER_25: _______________________________________________ stable mailing list [email protected] http://linux.kernel.org/mailman/listinfo/stable
