Re: [PATCH] driver core: bus: move lock_class_key into dynamic structure

From: Greg Kroah-Hartman
Date: Wed Feb 01 2023 - 14:03:25 EST


On Wed, Feb 01, 2023 at 07:59:42PM +0100, Rafael J. Wysocki wrote:
> On Wed, Feb 1, 2023 at 9:33 AM Greg Kroah-Hartman
> <gregkh@xxxxxxxxxxxxxxxxxxx> wrote:
> >
> > Move the lock_class_key structure out of struct bus_type and into the
> > dynamic structure we create already for all bus_types registered with
> > the kernel. This saves on static space and removes one more writable
> > field in struct bus_type.
> >
> > In the future, the same field can be moved out of the struct class logic
> > because it shares this same private structure.
> >
> > Most everyone will never notice this change, as lockdep is not enabled
> > in real systems so no memory or logic changes are happening for them.
> >
> > Cc: "Rafael J. Wysocki" <rafael@xxxxxxxxxx>
> > Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx>
>
> This looks reasonable to me, so
>
> Acked-by: Rafael J. Wysocki <rafael@xxxxxxxxxx>

Thanks for the review.