Re: [PATCH v2 1/4] container_of: add container_of_const() that preserves const-ness of the pointer

From: Greg Kroah-Hartman
Date: Tue Dec 06 2022 - 10:54:53 EST


On Tue, Dec 06, 2022 at 03:13:29PM +0000, Matthew Wilcox wrote:
> On Mon, Dec 05, 2022 at 01:12:03PM +0100, Greg Kroah-Hartman wrote:
> > +/**
> > + * container_of_const - cast a member of a structure out to the containing
> > + * structure and preserve the const-ness of the pointer
> > + * @ptr: the pointer to the member
> > + * @type: the type of the container struct this is embedded in.
> > + * @member: the name of the member within the struct.
> > + */
> > +#define container_of_const(ptr, type, member) \
> > + _Generic(ptr, \
> > + const typeof(*(ptr)) *: ((const type *)container_of(ptr, type, member)),\
> > + default: ((type *)container_of(ptr, type, member)) \
> > + )
> > +
>
> Reviewed-by: Matthew Wilcox (Oracle) <willy@xxxxxxxxxxxxx>
>
> I tried doing this:
>
> +++ b/include/linux/container_of.h
> @@ -15,11 +15,17 @@
> *
> * WARNING: any const qualifier of @ptr is lost.
> */
> -#define container_of(ptr, type, member) ({ \
> +#define _c_of(ptr, type, member) ({ \
> void *__mptr = (void *)(ptr); \
> static_assert(__same_type(*(ptr), ((type *)0)->member) || \
> __same_type(*(ptr), void), \
> "pointer type mismatch in container_of()"); \
> ((type *)(__mptr - offsetof(type, member))); })
>
> +#define container_of(ptr, type, m) \
> + _Generic(ptr, \
> + const typeof(*(ptr)) *: (const type *)_c_of(ptr, type, m),\
> + default: ((type *)_c_of(ptr, type, m)) \
> + )
> +
> #endif /* _LINUX_CONTAINER_OF_H */
>
> (whitespace damaged, yes the kernel-doc is now in the wrong place, etc)
>
> It found a few problems; just building the mlx5 driver (I happened to be
> doing some work on it in that tree). We're definitely not ready to do
> that yet, but I'll send a few patches to prepare for it.

Yeah, that's a good long-term goal to have here. Once everything is
moved over, switching all container_of_const() to just container_of()
should be simple.

thanks,

greg k-h