Re: cdce(4): replace CRC32 function with common ether_crc32_le

2017-04-09 Thread Hiltjo Posthuma
On Fri, Mar 31, 2017 at 04:41:27PM +0200, Hiltjo Posthuma wrote: > Hi, > > This patch removes the CRC32 function from the driver and uses the common > function ether_crc32_le. > > Maybe worth noting is that by testing in userspace using gcc -O0 the > specific cdce(4) CRC32 function is about

cdce(4): replace CRC32 function with common ether_crc32_le

2017-03-31 Thread Hiltjo Posthuma
Hi, This patch removes the CRC32 function from the driver and uses the common function ether_crc32_le. Maybe worth noting is that by testing in userspace using gcc -O0 the specific cdce(4) CRC32 function is about twice as fast as ether_crc32_le. Apart from this no functional change is intended.