Re: [PATCH v1 net] lan743x: Fix TX Stall Issue

2019-03-13 Thread David Miller
From: Bryan Whitehead Date: Wed, 13 Mar 2019 15:55:48 -0400 > It has been observed that tx queue may stall while downloading > from certain web sites (example www.speedtest.net) > > The cause has been tracked down to a corner case where > the tx interrupt vector was disabled automatically, but >

[PATCH v1 net] lan743x: Fix TX Stall Issue

2019-03-13 Thread Bryan Whitehead
It has been observed that tx queue may stall while downloading from certain web sites (example www.speedtest.net) The cause has been tracked down to a corner case where the tx interrupt vector was disabled automatically, but was not re enabled later. The lan743x has two mechanisms to enable/disab

Re: [PATCH v1 net] lan743x: Fix TX Stall Issue

2019-03-01 Thread David Miller
From: Bryan Whitehead Date: Tue, 26 Feb 2019 14:06:26 -0500 > It has been observed that tx queue stalls while downloading > from certain web sites (example www.speedtest.net) > > The cause has been tracked down to a corner case where > dma descriptors where not setup properly. And there for a tx

[PATCH v1 net] lan743x: Fix TX Stall Issue

2019-02-26 Thread Bryan Whitehead
It has been observed that tx queue stalls while downloading from certain web sites (example www.speedtest.net) The cause has been tracked down to a corner case where dma descriptors where not setup properly. And there for a tx completion interrupt was not signaled. This fix corrects the problem b