[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20081005103826.6771540a@infradead.org>
Date: Sun, 5 Oct 2008 10:38:26 -0700
From: Arjan van de Ven <arjan@...radead.org>
To: Andrew Morton <akpm@...ux-foundation.org>
Cc: linux-kernel@...r.kernel.org, torvalds@...ux-foundation.org,
Nick Piggin <nickpiggin@...oo.com.au>
Subject: Re: [kerneloops] regression in 2.6.27 wrt "lock_page" and the
"hwclock" program
On Sun, 5 Oct 2008 10:27:42 -0700
Andrew Morton <akpm@...ux-foundation.org> wrote:
> > static unsigned long
> > atomic(const char *name, unsigned long (*op)(unsigned long),
> > unsigned long arg)
> > {
> > unsigned long v;
> > __asm__ volatile ("cli");
> > v = (*op)(arg);
> > __asm__ volatile ("sti");
> > return v;
> > }
> >
> > looks like it (but only on 32 bit x86, not on 64 bit x86)
>
> I suspect this is new in hwclock? We do a might_sleep() in
> lock_page() in 2.6.25 and in 2.6.26.
this quote was from the F9 hwclock.. which shipped with 2.6.25.
Hum.
> > > Really, it's a bit stupid doing _any_ system calls (and a
> > > pagefault is a syscall in disguise) with interrupts disabled.
> > > The kernel makes no guarantees that we'll honour it. We could
> > > just enable interrupts on pagefault entry - that'll teach 'em.
> >
> > or save - enable - <run handlers> - restore sequence
>
> hwclock is buggy either way -
not arguing with that ;-)
All code doing cli/sti in userland is buggy period. No excuses possible.
> it's trying to disable interrupts but
> it's calling into the kernel, which will reenable interrupts, thus
> losing any protection which hwclock was trying to attain.
>
> Plus there's this little thing called "smp". I bet it doesn't disable
> interrupts on all CPUs.
I get the impression from the code that it really wants a "don't
schedule me out" rather than "this is a lock".
it can do better.
On Alpha it implements a seq-lock kind of thing instead.
(and on x86-64 .. it implements NOTHING)
--
Arjan van de Ven Intel Open Source Technology Centre
For development, discussion and tips for power savings,
visit http://www.lesswatts.org
--
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