Re: gettimeofday() jumping into the future

2007-08-23 Thread Gerald Britton
On Thu, Aug 23, 2007 at 01:08:27PM +0200, Michael Smith wrote: > Hi, > > We've been seeing some strange behaviour on some of our applications > recently. I've tracked this down to gettimeofday() returning spurious > values occasionally. > > Specifically, gettimeofday() will suddenly, for a single

Re: PROBLEM: MacBook makes whining noise when usb-uhci active

2007-07-07 Thread Gerald Britton
On Sat, Jul 07, 2007 at 10:17:34PM -0400, Alan Stern wrote: > > [2.] Full description of the problem/report: On my MacBook (first generation > > Core Duo 1.83GHz), I can hear a faint whining noise that becomes audible > > when usb-uhci is loaded and remains audible except when the USB ports are in

Re: [PATCH] cciss: Fix pci_driver.shutdown while device is still active

2007-05-14 Thread Gerald Britton
On Mon, May 14, 2007 at 07:06:45PM -, Miller, Mike (OS Dev) wrote: > Please send the Oops output. Sure, here it is, this was built from a clean 2.6.21.1 tree (despite the -dirty in the kernel version). -- Gerald Unmounting local filesystems...umount: /: device

[PATCH] cciss: Fix pci_driver.shutdown while device is still active

2007-05-14 Thread Gerald Britton
pci_driver.shutdown method. Signed-off-by: Gerald Britton <[EMAIL PROTECTED]> --- diff --git a/drivers/block/cciss.c b/drivers/block/cciss.c index 370dfe1..5acc6c4 100644 --- a/drivers/block/cciss.c +++ b/drivers/block/cciss.c @@ -3469,13 +3469,39 @@ static int __devinit cciss_init_one(

Re: [PATCH] [RSDL 1/6] lists: add list splice tail

2007-03-04 Thread Gerald Britton
On Sun, Mar 04, 2007 at 06:02:13PM +1100, Con Kolivas wrote: > Add a list_splice_tail variant of list_splice. > > Patch-by: Peter Zijlstra <[EMAIL PROTECTED]> > Signed-off-by: Con Kolivas <[EMAIL PROTECTED]> ... > @@ -360,6 +386,22 @@ static inline void list_splice_init(stru > } > > /** > + *