Home
last modified time | relevance | path

Searched refs:newfid (Results 1 – 10 of 10) sorted by relevance

/openbmc/qemu/tests/qtest/
H A Dvirtio-9p-test.c83 .client = v9p, .fid = 0, .newfid = 1, in fs_walk()
118 .client = v9p, .fid = 0, .newfid = 1, in fs_readdir()
182 .client = v9p, .fid = 0, .newfid = fid, in do_readdir_split()
254 .client = v9p, .fid = 0, .newfid = 1, .nwname = 1, .wnames = wnames, in fs_walk_no_slash()
291 }).newfid; in fs_walk_2nd_nonexistent()
323 .client = v9p, .fid = 0, .newfid = 1, .nwname = 0, .wnames = NULL, in fs_walk_none()
353 .client = v9p, .fid = 0, .newfid = 1, .nwname = 1, .wnames = wnames, in fs_walk_dotdot()
370 .client = v9p, .fid = 0, .newfid = 1, .nwname = 1, .wnames = wnames in fs_lopen()
389 .client = v9p, .fid = 0, .newfid = 1, .nwname = 1, .wnames = wnames in fs_write()
414 .client = v9p, .fid = 0, .newfid = 1, .nwname = 1, .wnames = wnames in fs_flush_success()
[all …]
/openbmc/linux/fs/coda/
H A Dcnode.c124 struct CodaFid *newfid) in coda_replace_fid() argument
127 unsigned long hash = coda_f2i(newfid); in coda_replace_fid()
134 cii->c_fid = *newfid; in coda_replace_fid()
H A Ddir.c143 struct CodaFid newfid; in coda_create() local
150 0, mode, &newfid, &attrs); in coda_create()
154 inode = coda_iget(dir->i_sb, &newfid, &attrs); in coda_create()
177 struct CodaFid newfid; in coda_mkdir() local
184 name, len, &newfid, &attrs); in coda_mkdir()
188 inode = coda_iget(dir->i_sb, &newfid, &attrs); in coda_mkdir()
H A Dcoda_psdev.h61 struct CodaFid *newfid, struct coda_vattr *attrs);
64 struct CodaFid *newfid, struct coda_vattr *attrs);
H A Dupcall.c203 struct CodaFid *newfid, struct coda_vattr *attrs) in venus_mkdir() argument
224 *newfid = outp->coda_mkdir.VFid; in venus_mkdir()
271 struct CodaFid *newfid, struct coda_vattr *attrs) in venus_create() argument
295 *newfid = outp->coda_create.VFid; in venus_create()
859 struct CodaFid *fid = NULL, *newfid; in coda_downcall() local
955 newfid = &out->coda_replace.NewFid; in coda_downcall()
956 coda_replace_fid(inode, fid, newfid); in coda_downcall()
/openbmc/qemu/scripts/
H A Danalyse-9p-simpletrace.py111 def v9fs_walk(self, tag, id, fid, newfid, nwnames): argument
112 … print("TWALK (tag =", tag, ", fid =", fid, ", newfid =", newfid, ", nwnames =", nwnames, ")")
198 def v9fs_xattrwalk(self, tag, id, fid, newfid, name): argument
199 … print("TXATTRWALK (tag =", tag, ", fid =", fid, ", newfid =", newfid, ", xattr name =", name, ")")
/openbmc/qemu/tests/qtest/libqos/
H A Dvirtio-9p-client.c431 if (!opt.newfid) { in v9fs_twalk()
432 opt.newfid = genfid(); in v9fs_twalk()
448 v9fs_uint32_write(req, opt.newfid); in v9fs_twalk()
469 .newfid = opt.newfid, in v9fs_twalk()
787 .path = opt.atPath }).newfid; in v9fs_tmkdir()
847 .path = opt.atPath }).newfid; in v9fs_tlcreate()
911 .path = opt.atPath }).newfid; in v9fs_tsymlink()
968 .path = opt.atPath }).newfid; in v9fs_tlink()
972 .path = opt.toPath }).newfid; in v9fs_tlink()
1020 .path = opt.atPath }).newfid; in v9fs_tunlinkat()
H A Dvirtio-9p-client.h85 uint32_t newfid; member
105 uint32_t newfid; member
/openbmc/qemu/hw/9pfs/
H A Dtrace-events14 …lk(uint16_t tag, uint8_t id, int32_t fid, int32_t newfid, uint16_t nwnames) "tag %d id %d fid %d n…
44 …rwalk(uint16_t tag, uint8_t id, int32_t fid, int32_t newfid, char* name) "tag %d id %d fid %d newf…
H A D9p.c1786 int32_t fid, newfid; in v9fs_walk() local
1794 err = pdu_unmarshal(pdu, offset, "ddw", &fid, &newfid, &nwnames); in v9fs_walk()
1801 trace_v9fs_walk(pdu->tag, pdu->id, fid, newfid, nwnames); in v9fs_walk()
1931 if (fid == newfid) { in v9fs_walk()
1940 newfidp = alloc_fid(s, newfid); in v9fs_walk()
3862 int32_t fid, newfid; in v9fs_xattrwalk() local
3869 err = pdu_unmarshal(pdu, offset, "dds", &fid, &newfid, &name); in v9fs_xattrwalk()
3873 trace_v9fs_xattrwalk(pdu->tag, pdu->id, fid, newfid, name.data); in v9fs_xattrwalk()
3880 xattr_fidp = alloc_fid(s, newfid); in v9fs_xattrwalk()