On Fri, 29 May 2015 12:56:07 +0200 Petr Mladek <pmla...@suse.cz> wrote:

> > > + /* try hard to get the lock but do not wait forever */
> > > + start_time = cpu_clock(this_cpu);
> > > + current_time = start_time;
> > > + while (current_time - start_time < TRY_LOCKBUF_LOCK_MAX_DELAY_NS) {
> > > +         if (raw_spin_trylock(&logbuf_lock))
> > > +                 return 1;
> > > +         cpu_relax();
> > > +         current_time = cpu_clock(this_cpu);
> > > + }
> > > +
> > > + return 0;
> > > +}
> > 
> > That CPU is now going to spin around for 100us and then time out.
> 
> Yes, there was a deadlock without the patch. So, limited spinning is
> still a win.
> 
> Or would you like to detect the deadlock immediately in all cases?
> I mean to add the proposed wrapper around take/release lock calls
> and set/test some cpu-specific variable there?

Yes.  Pointlessly spinning in NMI for 100us is bad.

> It sounds interesting. Well, the detection will not be 100% correct
> because there is a small race window between taking @logbuf_lock
> and setting @lockbuf_cpu. I wonder if it is worth doing. But I will
> do it if you want.

You might be able to do something with checking logbuf_cpu within the
loop to avoid the worst-case scenarios.

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

Reply via email to