Time conversion error in linux-2.6.11.10/net/sunrpoc/svcsock.c

2005-08-01 Thread Josip Loncaric
Line 589 of linux-2.6.11.10/net/sunrpc/svcsock.c is obviously wrong: skb->stamp.tv_usec = xtime.tv_nsec * 1000; To convert nsec to usec, one should divide instead of multiplying: skb->stamp.tv_usec = xtime.tv_nsec / 1000; The same bug could be present in the lat

PROBLEM: sk98lin misbehaves with D-Link DGE-530T which doesn't have readable VPD

2005-09-09 Thread Josip Loncaric
Driver sk98lin makes repeated attempts to read VPD even after the first VpdInit() fails. This is wrong. Lots of people seem to be getting repeated "Vpd: Cannot read VPD keys" errors. When nifd is active, this can happen every second, causing kernel stalls that disrupt time-critical operation

Re: PROBLEM: sk98lin misbehaves with D-Link DGE-530T which doesn't have readable VPD

2005-09-09 Thread Josip Loncaric
Stephen Hemminger wrote: On Fri, 09 Sep 2005 11:49:45 -0600 Josip Loncaric <[EMAIL PROTECTED]> wrote: Driver sk98lin makes repeated attempts to read VPD even after the first VpdInit() fails. This is wrong. Now that skge is in 2.6.13, perhaps the proper thing to do is to take DGE-53