On Mon, 2019-03-18 at 16:57 +0800, Yuyang Du wrote: > struct lock_chain { > - /* see BUILD_BUG_ON()s in lookup_chain_cache() */ > + /* > + * irq_context: the same as irq_context in held_lock below > + * depth: the number of held locks in this chain > + * base: the index in chain_hlocks for this chain > + */ > unsigned int irq_context : 2, > depth : 6, > base : 24;
Have you considered to use the kernel-doc style for documenting these structure members? Thanks, Bart.