Re: [PATCH RFC 00/11] rust: Implicit lock class creation & Arc Lockdep integration

From: Boqun Feng
Date: Tue Jul 18 2023 - 12:48:15 EST


On Sat, Jul 15, 2023 at 03:25:54PM +0100, Gary Guo wrote:
[...]
> > > I don't think the fallibility is an issue. Lockdep is a debugging tool,
> > > and it doesn't have to handle all possible circumstances perfectly. If
> > > you are debugging normal lock issues you probably shouldn't be running
> > > out of RAM, and if you are debugging OOM situations the lock keys would
> > > normally have been created long before you reach an OOM situation, since
> > > they would be created the first time a relevant lock class is used. More
> > > objects of the same class don't cause any more allocations. And the code
> > > has a fallback for the OOM case, where it just uses the Location object
> > > as a static lock class. That's not ideal and degrades the quality of the
> > > lockdep results, but it shouldn't completely break anything.
> >
> > If you have a fallback when the allocation fails, that helps ...
>
> I am pretty sure lockdep needs to do some internal allocation anyway
> because only address matters for lock class keys. So some extra
> allocation probably is fine...
>

Lockdep uses a few static arrays for its own allocation, but doesn't use
"external" allocatin (i.e. kalloc() and its friends. IIUC, originally
this has to do in this way to avoid recursive calls like:
lockdep->slab->lockdep, but now lockdep has a recursion counter, that's
not a problem any more. However, it's still better that lockdep can work
on its own without relying on other components.

Regards,
Boqun