• Home
  • Raw
  • Download

Lines Matching refs:stbuf

46 void p9stat_free(struct p9_wstat *stbuf)  in p9stat_free()  argument
48 kfree(stbuf->name); in p9stat_free()
49 stbuf->name = NULL; in p9stat_free()
50 kfree(stbuf->uid); in p9stat_free()
51 stbuf->uid = NULL; in p9stat_free()
52 kfree(stbuf->gid); in p9stat_free()
53 stbuf->gid = NULL; in p9stat_free()
54 kfree(stbuf->muid); in p9stat_free()
55 stbuf->muid = NULL; in p9stat_free()
56 kfree(stbuf->extension); in p9stat_free()
57 stbuf->extension = NULL; in p9stat_free()
205 struct p9_wstat *stbuf = in p9pdu_vreadf() local
208 memset(stbuf, 0, sizeof(struct p9_wstat)); in p9pdu_vreadf()
209 stbuf->n_uid = stbuf->n_muid = INVALID_UID; in p9pdu_vreadf()
210 stbuf->n_gid = INVALID_GID; in p9pdu_vreadf()
215 &stbuf->size, &stbuf->type, in p9pdu_vreadf()
216 &stbuf->dev, &stbuf->qid, in p9pdu_vreadf()
217 &stbuf->mode, &stbuf->atime, in p9pdu_vreadf()
218 &stbuf->mtime, &stbuf->length, in p9pdu_vreadf()
219 &stbuf->name, &stbuf->uid, in p9pdu_vreadf()
220 &stbuf->gid, &stbuf->muid, in p9pdu_vreadf()
221 &stbuf->extension, in p9pdu_vreadf()
222 &stbuf->n_uid, &stbuf->n_gid, in p9pdu_vreadf()
223 &stbuf->n_muid); in p9pdu_vreadf()
225 p9stat_free(stbuf); in p9pdu_vreadf()
321 struct p9_stat_dotl *stbuf = in p9pdu_vreadf() local
324 memset(stbuf, 0, sizeof(struct p9_stat_dotl)); in p9pdu_vreadf()
328 &stbuf->st_result_mask, in p9pdu_vreadf()
329 &stbuf->qid, in p9pdu_vreadf()
330 &stbuf->st_mode, in p9pdu_vreadf()
331 &stbuf->st_uid, &stbuf->st_gid, in p9pdu_vreadf()
332 &stbuf->st_nlink, in p9pdu_vreadf()
333 &stbuf->st_rdev, &stbuf->st_size, in p9pdu_vreadf()
334 &stbuf->st_blksize, &stbuf->st_blocks, in p9pdu_vreadf()
335 &stbuf->st_atime_sec, in p9pdu_vreadf()
336 &stbuf->st_atime_nsec, in p9pdu_vreadf()
337 &stbuf->st_mtime_sec, in p9pdu_vreadf()
338 &stbuf->st_mtime_nsec, in p9pdu_vreadf()
339 &stbuf->st_ctime_sec, in p9pdu_vreadf()
340 &stbuf->st_ctime_nsec, in p9pdu_vreadf()
341 &stbuf->st_btime_sec, in p9pdu_vreadf()
342 &stbuf->st_btime_nsec, in p9pdu_vreadf()
343 &stbuf->st_gen, in p9pdu_vreadf()
344 &stbuf->st_data_version); in p9pdu_vreadf()
433 const struct p9_wstat *stbuf = in p9pdu_vwritef() local
438 stbuf->size, stbuf->type, in p9pdu_vwritef()
439 stbuf->dev, &stbuf->qid, in p9pdu_vwritef()
440 stbuf->mode, stbuf->atime, in p9pdu_vwritef()
441 stbuf->mtime, stbuf->length, in p9pdu_vwritef()
442 stbuf->name, stbuf->uid, in p9pdu_vwritef()
443 stbuf->gid, stbuf->muid, in p9pdu_vwritef()
444 stbuf->extension, stbuf->n_uid, in p9pdu_vwritef()
445 stbuf->n_gid, stbuf->n_muid); in p9pdu_vwritef()