Re: [PATCH v4] u_ether: move hardware transmit to RX NAPI

2014-07-17 Thread ClanLab NCCU
Hi Andrzej, On Thu, Jul 17, 2014 at 2:54 PM, Andrzej Pietrasiewicz wrote: >> Would you please help to test the v4 patch (delay work for NAPI disabling) >> works on your platform? Thanks! >> >> Best regards, >> Weinn Jheng >> > Sorry about the delay, I've been quite busy these days. > > Which bran

Re: [PATCH v4] u_ether: move hardware transmit to RX NAPI

2014-07-16 Thread Andrzej Pietrasiewicz
W dniu 17.07.2014 05:14, ClanLab NCCU pisze: Hi Andrzej, Changes for v4: - Move NAPI disable to a work queue and see if this won't cause KE on replug. Would you please help to test the v4 patch (delay work for NAPI disabling) works on your platform? Thanks! Best regards, Weinn Jheng

Re: [PATCH v4] u_ether: move hardware transmit to RX NAPI

2014-07-16 Thread ClanLab NCCU
Hi Andrzej, > Changes for v4: > - Move NAPI disable to a work queue and see if this won't cause KE > on replug. Would you please help to test the v4 patch (delay work for NAPI disabling) works on your platform? Thanks! Best regards, Weinn Jheng -- To unsubscribe from this list: send the li

[PATCH v4] u_ether: move hardware transmit to RX NAPI

2014-07-10 Thread Weinn Jheng
In order to reduce the interrupt times in the embedded system, a receiving workqueue is introduced. This modification also enhanced the overall throughput as the benefits of reducing interrupt occurrence. This work was derived from previous work: u_ether: move hardware transmit to RX workqueue. Wh