[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <469CEEAE.7070308@redhat.com>
Date: Tue, 17 Jul 2007 12:30:38 -0400
From: Chuck Ebbert <cebbert@...hat.com>
To: Ingo Molnar <mingo@...e.hu>
CC: Ian Kent <raven@...maw.net>, Bill Davidsen <davidsen@....com>,
linux-kernel@...r.kernel.org,
Linus Torvalds <torvalds@...ux-foundation.org>
Subject: Re: [patch] CFS scheduler, -v19
On 07/17/2007 03:45 AM, Ingo Molnar wrote:
> * Ian Kent <raven@...maw.net> wrote:
>
>> Yes it does and I have two reported bugs so far.
>>
>> In several places I have code similar to:
>>
>> wait.tv_sec = time(NULL) + 1;
>> wait.tv_nsec = 0;
>>
>> signaled = 0;
>> while (!signaled) {
>> status = pthread_cond_timedwait(&cond, &mutex, &wait);
>> if (status) {
>> if (status == ETIMEDOUT)
>> break;
>> fatal(status);
>> }
>> }
>
> ah! It passes in a low-res time source into a high-res time interface
> (pthread_cond_timedwait()). Could you change the time(NULL) + 1 to
> time(NULL) + 2, or change it to:
>
> gettimeofday(&wait, NULL);
> wait.tv_sec++;
>
> does this solve the spinning?
>
> i'm wondering how widespread this is. If automount is the only app doing
> this then _maybe_ we could get away with it by changing automount?
Odds are there's at least one other app doing that somewhere.
Would reverting the CFS changes to time.c fix this problem?
That optimization just got merged in 2.6.22 mainline...
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists