On Fri, Nov 18, 2022 at 11:10 AM Brian Foster <bfoster@xxxxxxxxxx> wrote: > > +static int proc_fd_getattr(struct user_namespace *mnt_userns, > > + const struct path *path, struct kstat *stat, > > + u32 request_mask, unsigned int query_flags) > > +{ > > + struct inode *inode = d_inode(path->dentry); > > + int rv = 0; > > + > > + generic_fillattr(&init_user_ns, inode, stat); > > + > > Sorry I missed this on v3, but shouldn't this pass through the > mnt_userns parameter? The mnt_userns parameter was added in 549c729 (fs: make helpers idmap mount aware), and it's not passed anywhere in fs/proc. Looking at other uses of generic_fillattr, all of them use "init_user_ns": $ rg generic_fillattr fs/proc fs/proc/proc_net.c 301: generic_fillattr(&init_user_ns, inode, stat); fs/proc/base.c 1970: generic_fillattr(&init_user_ns, inode, stat); 3856: generic_fillattr(&init_user_ns, inode, stat); fs/proc/root.c 315: generic_fillattr(&init_user_ns, d_inode(path->dentry), stat); fs/proc/generic.c 150: generic_fillattr(&init_user_ns, inode, stat); fs/proc/proc_sysctl.c 841: generic_fillattr(&init_user_ns, inode, stat);