Re: 2.6.14-rc4-rt1

From: Ingo Molnar
Date: Thu Oct 13 2005 - 23:57:38 EST



* Fernando Lopez-Lezcano <nando@xxxxxxxxxxxxxxxxxx> wrote:

> #!/bin/bash
> while true ; do
> START=`date +"%s"`
> sleep 10
> END=`date +"%s"`
> let DIFF=END-START
> echo "$DIFF" >>time
> echo "---"
> done
>
> I'm attaching what I found when I got back.

> 1
> 10
> 6
> 0
> 0

could you try:

strace -o log sleep 10

and wait for a failure, and send us the log? Is it perhaps nanosleep
unexpectedly returning with -EAGAIN or -512? There's a transient
nanosleep failure that happens on really fast boxes, which we havent
gotten to the bottom yet. That problem is very sporadic, but maybe your
box is just too fast and triggers it more likely :-)

Ingo
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/