Re: [RFC PATCH] printk: console: Allow each console to have its own loglevel

From: Greg Kroah-Hartman
Date: Thu May 19 2022 - 03:04:45 EST


On Wed, May 18, 2022 at 09:27:17PM +0100, Chris Down wrote:
> Greg Kroah-Hartman writes:
> > > If you're talking about properly freeing the memory, I suppose it should
> > > happen by doing something like the following in unregister_console():
> > >
> > > if (!console_drivers)
> > > /* free the class object under console lock */
> > >
> > > ...right? Let me know if I'm misunderstanding you.
> >
> > You can't do that as the driver core should now be managing the
> > lifespace of that object. You can't "know" when the object's memory is
> > to be freed EXCEPT in the release function.
> >
> > So free it there please.
> >
> > Or do not tie the lifepan of the console class device object to the
> > console object, and keep it separate. I don't remember exactly how you
> > tied them together here, sorry.
>
> [...]
>
> > > > Do you ever free the class?
> > >
> > > Currently no. What do you think about the above proposal to do it once the
> > > console driver list is exhausted?
> >
> > If the code can never be unloaded, no, don't worry about it.
>
> So just so I understand, there's no problem here if we're not going to free
> the class object, correct? These two stanzas in your reply refer to the same
> thing, right?

The two stanzas in my reply do NOT refer to the same thing.

The first one is for the device that is assigned to the class. That
must be freed and properly reference counted and handled as that is a
dynamic object that can come and go as people add and remove consoles.

The second is the 'struct class' itself. You can register that and be
done with it if your code can never be unloaded as it can not be a
module.

Hope that explains the confusion better.

thanks,

greg k-h