Lines Matching refs:st
165 struct p9_stat_dotl *st = NULL; in v9fs_mount() local
166 st = p9_client_getattr_dotl(fid, P9_STATS_BASIC); in v9fs_mount()
167 if (IS_ERR(st)) { in v9fs_mount()
168 retval = PTR_ERR(st); in v9fs_mount()
171 root->d_inode->i_ino = v9fs_qid2ino(&st->qid); in v9fs_mount()
172 v9fs_stat2inode_dotl(st, root->d_inode); in v9fs_mount()
173 kfree(st); in v9fs_mount()
175 struct p9_wstat *st = NULL; in v9fs_mount() local
176 st = p9_client_stat(fid); in v9fs_mount()
177 if (IS_ERR(st)) { in v9fs_mount()
178 retval = PTR_ERR(st); in v9fs_mount()
182 root->d_inode->i_ino = v9fs_qid2ino(&st->qid); in v9fs_mount()
183 v9fs_stat2inode(st, root->d_inode, sb); in v9fs_mount()
185 p9stat_free(st); in v9fs_mount()
186 kfree(st); in v9fs_mount()