/Linux-v4.19/fs/9p/ |
D | v9fs.c | 120 struct v9fs_session_info *v9ses = root->d_sb->s_fs_info; in v9fs_show_options() local 122 if (v9ses->debug) in v9fs_show_options() 123 seq_printf(m, ",debug=%x", v9ses->debug); in v9fs_show_options() 124 if (!uid_eq(v9ses->dfltuid, V9FS_DEFUID)) in v9fs_show_options() 126 from_kuid_munged(&init_user_ns, v9ses->dfltuid)); in v9fs_show_options() 127 if (!gid_eq(v9ses->dfltgid, V9FS_DEFGID)) in v9fs_show_options() 129 from_kgid_munged(&init_user_ns, v9ses->dfltgid)); in v9fs_show_options() 130 if (v9ses->afid != ~0) in v9fs_show_options() 131 seq_printf(m, ",afid=%u", v9ses->afid); in v9fs_show_options() 132 if (strcmp(v9ses->uname, V9FS_DEFUSER) != 0) in v9fs_show_options() [all …]
|
D | vfs_inode.c | 64 static u32 unixmode2p9mode(struct v9fs_session_info *v9ses, umode_t mode) in unixmode2p9mode() argument 70 if (v9fs_proto_dotu(v9ses)) { in unixmode2p9mode() 71 if (v9ses->nodev == 0) { in unixmode2p9mode() 98 static int p9mode2perm(struct v9fs_session_info *v9ses, in p9mode2perm() argument 105 if (v9fs_proto_dotu(v9ses)) { in p9mode2perm() 125 static umode_t p9mode2unixmode(struct v9fs_session_info *v9ses, in p9mode2unixmode() argument 132 res = p9mode2perm(v9ses, stat); in p9mode2unixmode() 136 else if ((mode & P9_DMSYMLINK) && (v9fs_proto_dotu(v9ses))) in p9mode2unixmode() 138 else if ((mode & P9_DMSOCKET) && (v9fs_proto_dotu(v9ses)) in p9mode2unixmode() 139 && (v9ses->nodev == 0)) in p9mode2unixmode() [all …]
|
D | vfs_super.c | 75 v9fs_fill_super(struct super_block *sb, struct v9fs_session_info *v9ses, in v9fs_fill_super() argument 81 sb->s_blocksize_bits = fls(v9ses->maxdata - 1); in v9fs_fill_super() 84 if (v9fs_proto_dotl(v9ses)) { in v9fs_fill_super() 94 if (v9ses->cache) in v9fs_fill_super() 98 if (!v9ses->cache) in v9fs_fill_super() 102 if ((v9ses->flags & V9FS_ACL_MASK) == V9FS_POSIX_ACL) in v9fs_fill_super() 124 struct v9fs_session_info *v9ses = NULL; in v9fs_mount() local 131 v9ses = kzalloc(sizeof(struct v9fs_session_info), GFP_KERNEL); in v9fs_mount() 132 if (!v9ses) in v9fs_mount() 135 fid = v9fs_session_init(v9ses, dev_name, data); in v9fs_mount() [all …]
|
D | v9fs.h | 145 extern void v9fs_session_close(struct v9fs_session_info *v9ses); 146 extern void v9fs_session_cancel(struct v9fs_session_info *v9ses); 147 extern void v9fs_session_begin_cancel(struct v9fs_session_info *v9ses); 155 extern struct inode *v9fs_inode_from_fid(struct v9fs_session_info *v9ses, 161 extern struct inode *v9fs_inode_from_fid_dotl(struct v9fs_session_info *v9ses, 182 static inline int v9fs_proto_dotu(struct v9fs_session_info *v9ses) in v9fs_proto_dotu() argument 184 return v9ses->flags & V9FS_PROTO_2000U; in v9fs_proto_dotu() 187 static inline int v9fs_proto_dotl(struct v9fs_session_info *v9ses) in v9fs_proto_dotl() argument 189 return v9ses->flags & V9FS_PROTO_2000L; in v9fs_proto_dotl() 201 v9fs_get_inode_from_fid(struct v9fs_session_info *v9ses, struct p9_fid *fid, in v9fs_get_inode_from_fid() argument [all …]
|
D | cache.c | 49 int v9fs_random_cachetag(struct v9fs_session_info *v9ses) in v9fs_random_cachetag() argument 51 v9ses->cachetag = kmalloc(CACHETAG_LEN, GFP_KERNEL); in v9fs_random_cachetag() 52 if (!v9ses->cachetag) in v9fs_random_cachetag() 55 return scnprintf(v9ses->cachetag, CACHETAG_LEN, "%lu", jiffies); in v9fs_random_cachetag() 63 void v9fs_cache_session_get_cookie(struct v9fs_session_info *v9ses) in v9fs_cache_session_get_cookie() argument 66 if (!v9ses->cachetag) { in v9fs_cache_session_get_cookie() 67 if (v9fs_random_cachetag(v9ses) < 0) { in v9fs_cache_session_get_cookie() 68 v9ses->fscache = NULL; in v9fs_cache_session_get_cookie() 73 v9ses->fscache = fscache_acquire_cookie(v9fs_cache_netfs.primary_index, in v9fs_cache_session_get_cookie() 75 v9ses->cachetag, in v9fs_cache_session_get_cookie() [all …]
|
D | fid.c | 93 static int build_path_from_dentry(struct v9fs_session_info *v9ses, in build_path_from_dentry() argument 122 struct v9fs_session_info *v9ses; in v9fs_fid_lookup_with_uid() local 125 v9ses = v9fs_dentry2v9ses(dentry); in v9fs_fid_lookup_with_uid() 126 access = v9ses->flags & V9FS_ACCESS_MASK; in v9fs_fid_lookup_with_uid() 135 down_read(&v9ses->rename_sem); in v9fs_fid_lookup_with_uid() 143 up_read(&v9ses->rename_sem); in v9fs_fid_lookup_with_uid() 152 if (v9fs_proto_dotu(v9ses) || v9fs_proto_dotl(v9ses)) in v9fs_fid_lookup_with_uid() 155 uname = v9ses->uname; in v9fs_fid_lookup_with_uid() 157 fid = p9_client_attach(v9ses->clnt, NULL, uname, uid, in v9fs_fid_lookup_with_uid() 158 v9ses->aname); in v9fs_fid_lookup_with_uid() [all …]
|
D | vfs_inode_dotl.c | 121 struct v9fs_session_info *v9ses = sb->s_fs_info; in v9fs_qid_iget_dotl() local 141 retval = v9fs_init_inode(v9ses, inode, in v9fs_qid_iget_dotl() 161 v9fs_inode_from_fid_dotl(struct v9fs_session_info *v9ses, struct p9_fid *fid, in v9fs_inode_from_fid_dotl() argument 255 struct v9fs_session_info *v9ses; in v9fs_vfs_atomic_open_dotl() local 272 v9ses = v9fs_inode2v9ses(dir); in v9fs_vfs_atomic_open_dotl() 320 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb); in v9fs_vfs_atomic_open_dotl() 334 if ((v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) && in v9fs_vfs_atomic_open_dotl() 358 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) in v9fs_vfs_atomic_open_dotl() 387 struct v9fs_session_info *v9ses; in v9fs_vfs_mkdir_dotl() local 398 v9ses = v9fs_inode2v9ses(dir); in v9fs_vfs_mkdir_dotl() [all …]
|
D | acl.c | 60 struct v9fs_session_info *v9ses; in v9fs_get_acl() local 62 v9ses = v9fs_inode2v9ses(inode); in v9fs_get_acl() 63 if (((v9ses->flags & V9FS_ACCESS_MASK) != V9FS_ACCESS_CLIENT) || in v9fs_get_acl() 64 ((v9ses->flags & V9FS_ACL_MASK) != V9FS_POSIX_ACL)) { in v9fs_get_acl() 102 struct v9fs_session_info *v9ses; in v9fs_iop_get_acl() local 104 v9ses = v9fs_inode2v9ses(inode); in v9fs_iop_get_acl() 105 if (((v9ses->flags & V9FS_ACCESS_MASK) != V9FS_ACCESS_CLIENT) || in v9fs_iop_get_acl() 106 ((v9ses->flags & V9FS_ACL_MASK) != V9FS_POSIX_ACL)) { in v9fs_iop_get_acl() 219 struct v9fs_session_info *v9ses; in v9fs_xattr_get_acl() local 223 v9ses = v9fs_dentry2v9ses(dentry); in v9fs_xattr_get_acl() [all …]
|
D | vfs_dentry.c | 93 struct v9fs_session_info *v9ses; in v9fs_lookup_revalidate() local 98 v9ses = v9fs_inode2v9ses(inode); in v9fs_lookup_revalidate() 99 if (v9fs_proto_dotl(v9ses)) in v9fs_lookup_revalidate()
|
D | vfs_file.c | 63 struct v9fs_session_info *v9ses; in v9fs_file_open() local 69 v9ses = v9fs_inode2v9ses(inode); in v9fs_file_open() 70 if (v9fs_proto_dotl(v9ses)) in v9fs_file_open() 74 v9fs_proto_dotu(v9ses)); in v9fs_file_open() 87 (!v9fs_proto_dotu(v9ses) && !v9fs_proto_dotl(v9ses))) in v9fs_file_open() 93 if ((v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) && in v9fs_file_open() 112 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) in v9fs_file_open()
|
D | cache.h | 33 extern void v9fs_cache_session_get_cookie(struct v9fs_session_info *v9ses); 34 extern void v9fs_cache_session_put_cookie(struct v9fs_session_info *v9ses);
|
D | v9fs_vfs.h | 60 int v9fs_init_inode(struct v9fs_session_info *v9ses,
|