Re: [PATCH] net: fec: Detect and recover receive queue hangs

2016-11-18 Thread Chris Lesiak
On 11/18/2016 12:44 AM, Andy Duan wrote: > From: Chris Lesiak Sent: Friday, November 18, 2016 > 5:15 AM > >To: Andy Duan > >Cc: net...@vger.kernel.org; linux-kernel@vger.kernel.org; Jaccon > >Bastiaansen ; chris.les...@licor.com > >Subject: [PATCH] net: fec: De

[PATCH] net: fec: Detect and recover receive queue hangs

2016-11-17 Thread Chris Lesiak
reschedules the poll method. Signed-off-by: Chris Lesiak --- drivers/net/ethernet/freescale/fec_main.c | 31 +++ 1 file changed, 31 insertions(+) diff --git a/drivers/net/ethernet/freescale/fec_main.c b/drivers/net/ethernet/freescale/fec_main.c index fea0f33..8a87037

[PATCH] lib: crc-itu-t: Fix polynomial comment

2016-10-04 Thread Chris Lesiak
The hexidecimal representation (0x1021) can be a bit confusing because the leading 1 (x^16) is not shown. 0x1021 | ||_ x^0 (Usually known as 1) | |__ x^5 | x^12 x^16 (Implicit in size of CRC) Signed-off-by: Chris Lesiak --- include/linux/crc-itu-t.h | 2 +- lib/crc-itu-t.c

Re: [PATCH] spi subsystem: destroy the spi_bitbang workqueue only after the spi master is unregistered

2007-03-09 Thread Chris Lesiak
From: Chris Lesiak <[EMAIL PROTECTED]> This patch fixes a bug in the cleanup of an spi_bitbang bus. The workqueue associated with the bus was destroyed before the call to spi_unregister_master. That meant that spi devices on that bus would be unable to do IO in their remove method

[PATCH] spi subsystem: destroy the spi_bitbang workqueue only after the spi master is unregistered

2007-03-07 Thread Chris Lesiak
From: Chris Lesiak <[EMAIL PROTECTED]> This patch fixes a bug in the cleanup of an spi_bitbang bus. The workqueue associated with the bus was destroyed before the call to spi_unregister_master. That meant that spi devices on that bus would be unable to do IO in their remove method