Lines Matching refs:st
161 struct p9_stat_dotl *st = NULL; in v9fs_mount() local
162 st = p9_client_getattr_dotl(fid, P9_STATS_BASIC); in v9fs_mount()
163 if (IS_ERR(st)) { in v9fs_mount()
164 retval = PTR_ERR(st); in v9fs_mount()
167 d_inode(root)->i_ino = v9fs_qid2ino(&st->qid); in v9fs_mount()
168 v9fs_stat2inode_dotl(st, d_inode(root)); in v9fs_mount()
169 kfree(st); in v9fs_mount()
171 struct p9_wstat *st = NULL; in v9fs_mount() local
172 st = p9_client_stat(fid); in v9fs_mount()
173 if (IS_ERR(st)) { in v9fs_mount()
174 retval = PTR_ERR(st); in v9fs_mount()
178 d_inode(root)->i_ino = v9fs_qid2ino(&st->qid); in v9fs_mount()
179 v9fs_stat2inode(st, d_inode(root), sb); in v9fs_mount()
181 p9stat_free(st); in v9fs_mount()
182 kfree(st); in v9fs_mount()