/linux-6.1.9/fs/9p/ |
D | v9fs.c | 106 struct v9fs_session_info *v9ses = root->d_sb->s_fs_info; in v9fs_show_options() local 108 if (v9ses->debug) in v9fs_show_options() 109 seq_printf(m, ",debug=%x", v9ses->debug); in v9fs_show_options() 110 if (!uid_eq(v9ses->dfltuid, V9FS_DEFUID)) in v9fs_show_options() 112 from_kuid_munged(&init_user_ns, v9ses->dfltuid)); in v9fs_show_options() 113 if (!gid_eq(v9ses->dfltgid, V9FS_DEFGID)) in v9fs_show_options() 115 from_kgid_munged(&init_user_ns, v9ses->dfltgid)); in v9fs_show_options() 116 if (v9ses->afid != ~0) in v9fs_show_options() 117 seq_printf(m, ",afid=%u", v9ses->afid); in v9fs_show_options() 118 if (strcmp(v9ses->uname, V9FS_DEFUSER) != 0) in v9fs_show_options() [all …]
|
D | v9fs.h | 133 static inline struct fscache_volume *v9fs_session_cache(struct v9fs_session_info *v9ses) in v9fs_session_cache() argument 136 return v9ses->fscache; in v9fs_session_cache() 145 struct p9_fid *v9fs_session_init(struct v9fs_session_info *v9ses, 147 extern void v9fs_session_close(struct v9fs_session_info *v9ses); 148 extern void v9fs_session_cancel(struct v9fs_session_info *v9ses); 149 extern void v9fs_session_begin_cancel(struct v9fs_session_info *v9ses); 158 extern struct inode *v9fs_inode_from_fid(struct v9fs_session_info *v9ses, 165 extern struct inode *v9fs_inode_from_fid_dotl(struct v9fs_session_info *v9ses, 186 static inline int v9fs_proto_dotu(struct v9fs_session_info *v9ses) in v9fs_proto_dotu() argument 188 return v9ses->flags & V9FS_PROTO_2000U; in v9fs_proto_dotu() [all …]
|
D | vfs_super.c | 57 v9fs_fill_super(struct super_block *sb, struct v9fs_session_info *v9ses, in v9fs_fill_super() argument 63 sb->s_blocksize_bits = fls(v9ses->maxdata - 1); in v9fs_fill_super() 66 if (v9fs_proto_dotl(v9ses)) { in v9fs_fill_super() 80 if (!v9ses->cache) { in v9fs_fill_super() 84 sb->s_bdi->ra_pages = v9ses->maxdata >> PAGE_SHIFT; in v9fs_fill_super() 85 sb->s_bdi->io_pages = v9ses->maxdata >> PAGE_SHIFT; in v9fs_fill_super() 89 if (!v9ses->cache) in v9fs_fill_super() 93 if ((v9ses->flags & V9FS_ACL_MASK) == V9FS_POSIX_ACL) in v9fs_fill_super() 115 struct v9fs_session_info *v9ses = NULL; in v9fs_mount() local 122 v9ses = kzalloc(sizeof(struct v9fs_session_info), GFP_KERNEL); in v9fs_mount() [all …]
|
D | vfs_inode.c | 47 static u32 unixmode2p9mode(struct v9fs_session_info *v9ses, umode_t mode) in unixmode2p9mode() argument 54 if (v9fs_proto_dotu(v9ses)) { in unixmode2p9mode() 55 if (v9ses->nodev == 0) { in unixmode2p9mode() 82 static int p9mode2perm(struct v9fs_session_info *v9ses, in p9mode2perm() argument 89 if (v9fs_proto_dotu(v9ses)) { in p9mode2perm() 109 static umode_t p9mode2unixmode(struct v9fs_session_info *v9ses, in p9mode2unixmode() argument 116 res = p9mode2perm(v9ses, stat); in p9mode2unixmode() 120 else if ((mode & P9_DMSYMLINK) && (v9fs_proto_dotu(v9ses))) in p9mode2unixmode() 122 else if ((mode & P9_DMSOCKET) && (v9fs_proto_dotu(v9ses)) in p9mode2unixmode() 123 && (v9ses->nodev == 0)) in p9mode2unixmode() [all …]
|
D | fid.c | 133 static int build_path_from_dentry(struct v9fs_session_info *v9ses, in build_path_from_dentry() argument 162 struct v9fs_session_info *v9ses; in v9fs_fid_lookup_with_uid() local 165 v9ses = v9fs_dentry2v9ses(dentry); in v9fs_fid_lookup_with_uid() 166 access = v9ses->flags & V9FS_ACCESS_MASK; in v9fs_fid_lookup_with_uid() 175 down_read(&v9ses->rename_sem); in v9fs_fid_lookup_with_uid() 186 up_read(&v9ses->rename_sem); in v9fs_fid_lookup_with_uid() 195 if (v9fs_proto_dotu(v9ses) || v9fs_proto_dotl(v9ses)) in v9fs_fid_lookup_with_uid() 198 uname = v9ses->uname; in v9fs_fid_lookup_with_uid() 200 fid = p9_client_attach(v9ses->clnt, NULL, uname, uid, in v9fs_fid_lookup_with_uid() 201 v9ses->aname); in v9fs_fid_lookup_with_uid() [all …]
|
D | cache.c | 19 int v9fs_cache_session_get_cookie(struct v9fs_session_info *v9ses, in v9fs_cache_session_get_cookie() argument 26 dev_name, v9ses->cachetag ?: v9ses->aname); in v9fs_cache_session_get_cookie() 36 v9ses, vcookie, name); in v9fs_cache_session_get_cookie() 45 v9ses->fscache = vcookie; in v9fs_cache_session_get_cookie() 53 struct v9fs_session_info *v9ses; in v9fs_cache_inode_get_cookie() local 64 v9ses = v9fs_inode2v9ses(inode); in v9fs_cache_inode_get_cookie() 66 fscache_acquire_cookie(v9fs_session_cache(v9ses), in v9fs_cache_inode_get_cookie()
|
D | vfs_inode_dotl.c | 107 struct v9fs_session_info *v9ses = sb->s_fs_info; in v9fs_qid_iget_dotl() local 127 retval = v9fs_init_inode(v9ses, inode, in v9fs_qid_iget_dotl() 147 v9fs_inode_from_fid_dotl(struct v9fs_session_info *v9ses, struct p9_fid *fid, in v9fs_inode_from_fid_dotl() argument 242 struct v9fs_session_info *v9ses; in v9fs_vfs_atomic_open_dotl() local 259 v9ses = v9fs_inode2v9ses(dir); in v9fs_vfs_atomic_open_dotl() 306 inode = v9fs_get_new_inode_from_fid(v9ses, fid, dir->i_sb); in v9fs_vfs_atomic_open_dotl() 320 if ((v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) && in v9fs_vfs_atomic_open_dotl() 344 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) in v9fs_vfs_atomic_open_dotl() 372 struct v9fs_session_info *v9ses; in v9fs_vfs_mkdir_dotl() local 383 v9ses = v9fs_inode2v9ses(dir); in v9fs_vfs_mkdir_dotl() [all …]
|
D | acl.c | 52 struct v9fs_session_info *v9ses; in v9fs_get_acl() local 54 v9ses = v9fs_inode2v9ses(inode); in v9fs_get_acl() 55 if (((v9ses->flags & V9FS_ACCESS_MASK) != V9FS_ACCESS_CLIENT) || in v9fs_get_acl() 56 ((v9ses->flags & V9FS_ACL_MASK) != V9FS_POSIX_ACL)) { in v9fs_get_acl() 94 struct v9fs_session_info *v9ses; in v9fs_iop_get_acl() local 99 v9ses = v9fs_inode2v9ses(inode); in v9fs_iop_get_acl() 100 if (((v9ses->flags & V9FS_ACCESS_MASK) != V9FS_ACCESS_CLIENT) || in v9fs_iop_get_acl() 101 ((v9ses->flags & V9FS_ACL_MASK) != V9FS_POSIX_ACL)) { in v9fs_iop_get_acl() 215 struct v9fs_session_info *v9ses; in v9fs_xattr_get_acl() local 219 v9ses = v9fs_dentry2v9ses(dentry); in v9fs_xattr_get_acl() [all …]
|
D | vfs_file.c | 46 struct v9fs_session_info *v9ses; in v9fs_file_open() local 52 v9ses = v9fs_inode2v9ses(inode); in v9fs_file_open() 53 if (v9fs_proto_dotl(v9ses)) in v9fs_file_open() 57 v9fs_proto_dotu(v9ses)); in v9fs_file_open() 70 (!v9fs_proto_dotu(v9ses) && !v9fs_proto_dotl(v9ses))) in v9fs_file_open() 77 if ((v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) && in v9fs_file_open() 96 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) in v9fs_file_open() 138 struct v9fs_session_info *v9ses; in v9fs_file_do_lock() local 173 v9ses = v9fs_inode2v9ses(file_inode(filp)); in v9fs_file_do_lock() 188 if (schedule_timeout_interruptible(v9ses->session_lock_timeout) in v9fs_file_do_lock()
|
D | vfs_dentry.c | 77 struct v9fs_session_info *v9ses; in v9fs_lookup_revalidate() local 83 v9ses = v9fs_inode2v9ses(inode); in v9fs_lookup_revalidate() 84 if (v9fs_proto_dotl(v9ses)) in v9fs_lookup_revalidate()
|
D | cache.h | 15 extern int v9fs_cache_session_get_cookie(struct v9fs_session_info *v9ses,
|
D | v9fs_vfs.h | 49 int v9fs_init_inode(struct v9fs_session_info *v9ses,
|