RE: [PATCH] netfs: Use container_of() for offset casting

From: David Laight
Date: Wed May 18 2022 - 06:01:40 EST


From: David Howells
> Sent: 18 May 2022 09:05
>
> I wonder if it would be worth making this explicit in the inode wrappers of
> the users of netfslib. In afs, for instance, there is:
>
> struct afs_vnode {
> struct {
> /* These must be contiguous */
> struct inode vfs_inode;
> struct netfs_i_context netfs_ctx;
> };
> ...
> };
>
> would it be worth making that:
>
> struct afs_vnode {
> union {
> struct netfs_i_c_pair netfs_inode;
> struct {
> /* These must be contiguous */
> struct inode vfs_inode;
> struct netfs_i_context netfs_ctx;
> };
> };
> ...
> };
>

Can't you just name the structure so it is:

struct afs_vnode {
struct netfs_i_c_pair {
/* These must be contiguous */
struct inode vfs_inode;
struct netfs_i_context netfs_ctx;
};
...
};

David

-
Registered Address Lakeside, Bramley Road, Mount Farm, Milton Keynes, MK1 1PT, UK
Registration No: 1397386 (Wales)