• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/9p/

Lines Matching defs:fid

540 v9fs_create_tattach(u32 fid, u32 afid, char *uname, char *aname)
547 size = 4 + 4 + 2 + strlen(uname) + 2 + strlen(aname); /* fid[4] afid[4] uname[s] aname[s] */
552 v9fs_put_int32(bufp, fid, &fc->params.tattach.fid);
583 struct v9fs_fcall *v9fs_create_twalk(u32 fid, u32 newfid, u16 nwname,
596 size = 4 + 4 + 2; /* fid[4] newfid[4] nwname[2] ... */
605 v9fs_put_int32(bufp, fid, &fc->params.twalk.fid);
620 struct v9fs_fcall *v9fs_create_topen(u32 fid, u8 mode)
627 size = 4 + 1; /* fid[4] mode[1] */
632 v9fs_put_int32(bufp, fid, &fc->params.topen.fid);
643 struct v9fs_fcall *v9fs_create_tcreate(u32 fid, char *name, u32 perm, u8 mode,
651 size = 4 + 2 + strlen(name) + 4 + 1; /* fid[4] name[s] perm[4] mode[1] */
661 v9fs_put_int32(bufp, fid, &fc->params.tcreate.fid);
676 struct v9fs_fcall *v9fs_create_tread(u32 fid, u64 offset, u32 count)
683 size = 4 + 8 + 4; /* fid[4] offset[8] count[4] */
688 v9fs_put_int32(bufp, fid, &fc->params.tread.fid);
700 struct v9fs_fcall *v9fs_create_twrite(u32 fid, u64 offset, u32 count,
708 size = 4 + 8 + 4 + count; /* fid[4] offset[8] count[4] data[count] */
713 v9fs_put_int32(bufp, fid, &fc->params.twrite.fid);
730 struct v9fs_fcall *v9fs_create_tclunk(u32 fid)
737 size = 4; /* fid[4] */
742 v9fs_put_int32(bufp, fid, &fc->params.tclunk.fid);
752 struct v9fs_fcall *v9fs_create_tremove(u32 fid)
759 size = 4; /* fid[4] */
764 v9fs_put_int32(bufp, fid, &fc->params.tremove.fid);
774 struct v9fs_fcall *v9fs_create_tstat(u32 fid)
781 size = 4; /* fid[4] */
786 v9fs_put_int32(bufp, fid, &fc->params.tstat.fid);
796 struct v9fs_fcall *v9fs_create_twstat(u32 fid, struct v9fs_wstat *wstat,
805 size = 4 + 2 + 2 + statsz; /* fid[4] stat[n] */
810 v9fs_put_int32(bufp, fid, &fc->params.twstat.fid);