Lines Matching defs:vfsuid
154 * from_vfsuid - map a vfsuid into the filesystem idmapping
157 * @vfsuid : vfsuid to be mapped
159 * Map @vfsuid into the filesystem idmapping. This function has to be used in
160 * order to e.g. write @vfsuid to inode->i_uid.
162 * Return: @vfsuid mapped into the filesystem idmapping
165 struct user_namespace *fs_userns, vfsuid_t vfsuid)
171 return AS_KUIDT(vfsuid);
172 uid = from_kuid(mnt_userns, AS_KUIDT(vfsuid));
211 * vfsgid_in_group_p() - check whether a vfsuid matches the caller's groups
214 * This function can be used to determine whether @vfsuid matches any of the
217 * Return: 1 if vfsuid matches caller's groups, 0 if not.