• Home
  • Raw
  • Download

Lines Matching refs:v9ses

60 v9fs_fill_super(struct super_block *sb, struct v9fs_session_info *v9ses,  in v9fs_fill_super()  argument
66 sb->s_blocksize_bits = fls(v9ses->maxdata - 1); in v9fs_fill_super()
69 if (v9fs_proto_dotl(v9ses)) { in v9fs_fill_super()
83 if (!v9ses->cache) { 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()
123 if (!v9ses) in v9fs_mount()
126 fid = v9fs_session_init(v9ses, dev_name, data); in v9fs_mount()
132 sb = sget(fs_type, NULL, v9fs_set_super, flags, v9ses); in v9fs_mount()
137 retval = v9fs_fill_super(sb, v9ses, flags); in v9fs_mount()
141 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) in v9fs_mount()
158 if (v9fs_proto_dotl(v9ses)) { in v9fs_mount()
194 v9fs_session_close(v9ses); in v9fs_mount()
196 kfree(v9ses); in v9fs_mount()
219 struct v9fs_session_info *v9ses = s->s_fs_info; in v9fs_kill_super() local
225 v9fs_session_cancel(v9ses); in v9fs_kill_super()
226 v9fs_session_close(v9ses); in v9fs_kill_super()
227 kfree(v9ses); in v9fs_kill_super()
235 struct v9fs_session_info *v9ses; in v9fs_umount_begin() local
237 v9ses = sb->s_fs_info; in v9fs_umount_begin()
238 v9fs_session_begin_cancel(v9ses); in v9fs_umount_begin()
243 struct v9fs_session_info *v9ses; in v9fs_statfs() local
254 v9ses = v9fs_dentry2v9ses(dentry); in v9fs_statfs()
255 if (v9fs_proto_dotl(v9ses)) { in v9fs_statfs()
279 struct v9fs_session_info *v9ses; in v9fs_drop_inode() local
281 v9ses = v9fs_inode2v9ses(inode); in v9fs_drop_inode()
282 if (v9ses->cache == CACHE_LOOSE || v9ses->cache == CACHE_FSCACHE) in v9fs_drop_inode()