Lines Matching defs:wstat
193 * @wstat: structure to initialize
198 v9fs_blank_wstat(struct p9_wstat *wstat)
200 wstat->type = ~0;
201 wstat->dev = ~0;
202 wstat->qid.type = ~0;
203 wstat->qid.version = ~0;
204 *((long long *)&wstat->qid.path) = ~0;
205 wstat->mode = ~0;
206 wstat->atime = ~0;
207 wstat->mtime = ~0;
208 wstat->length = ~0;
209 wstat->name = NULL;
210 wstat->uid = NULL;
211 wstat->gid = NULL;
212 wstat->muid = NULL;
213 wstat->n_uid = INVALID_UID;
214 wstat->n_gid = INVALID_GID;
215 wstat->n_muid = INVALID_UID;
216 wstat->extension = NULL;
908 struct p9_wstat wstat;
953 v9fs_blank_wstat(&wstat);
954 wstat.muid = v9ses->uname;
955 wstat.name = new_dentry->d_name.name;
956 retval = p9_client_wstat(oldfid, &wstat);
1040 struct p9_wstat wstat;
1058 v9fs_blank_wstat(&wstat);
1060 wstat.mode = unixmode2p9mode(v9ses, iattr->ia_mode);
1063 wstat.mtime = iattr->ia_mtime.tv_sec;
1066 wstat.atime = iattr->ia_atime.tv_sec;
1069 wstat.length = iattr->ia_size;
1073 wstat.n_uid = iattr->ia_uid;
1076 wstat.n_gid = iattr->ia_gid;
1083 retval = p9_client_wstat(fid, &wstat);