On 5/9/23 09:56, Kent Overstreet wrote: > diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug > index 39d1d93164..3dba7a9aff 100644 > --- a/lib/Kconfig.debug > +++ b/lib/Kconfig.debug > @@ -1618,6 +1618,15 @@ config DEBUG_NOTIFIERS > This is a relatively cheap check but if you care about maximum > performance, say N. > > +config DEBUG_CLOSURES > + bool "Debug closures (bcache async widgits)" > + depends on CLOSURES > + select DEBUG_FS > + help > + Keeps all active closures in a linked list and provides a debugfs > + interface to list them, which makes it possible to see asynchronous > + operations that get stuck. According to coding-style.rst, the help text (3 lines above) should be indented with 2 additional spaces. > + help > + Keeps all active closures in a linked list and provides a debugfs > + interface to list them, which makes it possible to see asynchronous > + operations that get stuck. -- ~Randy