Lines Matching refs:uid
42 * v9fs_fid_find - retrieve a fid that belongs to the specified uid
44 * @uid: return fid that belongs to the specified user
49 static struct p9_fid *v9fs_fid_find(struct dentry *dentry, kuid_t uid, int any)
53 p9_debug(P9_DEBUG_VFS, " dentry: %pd (%p) uid %d any %d\n",
54 dentry, dentry, from_kuid(&init_user_ns, uid),
62 if (any || uid_eq(fid->uid, uid)) {
102 kuid_t uid, int any)
112 fid = v9fs_fid_find(dentry, uid, any);
122 fid = v9fs_fid_find(ds, uid, any);
131 fid = v9fs_fid_find(dentry->d_sb->s_root, uid, any);
142 fid = p9_client_attach(v9ses->clnt, NULL, uname, uid,
218 kuid_t uid;
228 uid = current_fsuid();
233 uid = v9ses->uid;
238 uid = INVALID_UID;
242 return v9fs_fid_lookup_with_uid(dentry, uid, any);