/openbmc/qemu/tests/qtest/ |
H A D | virtio-9p-test.c | 83 .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 D | cnode.c | 124 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 D | dir.c | 143 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 D | coda_psdev.h | 61 struct CodaFid *newfid, struct coda_vattr *attrs); 64 struct CodaFid *newfid, struct coda_vattr *attrs);
|
H A D | upcall.c | 203 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 D | analyse-9p-simpletrace.py | 111 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 D | virtio-9p-client.c | 432 if (!opt.newfid) { in v9fs_twalk() 433 opt.newfid = genfid(); in v9fs_twalk() 449 v9fs_uint32_write(req, opt.newfid); in v9fs_twalk() 470 .newfid = opt.newfid, in v9fs_twalk() 788 .path = opt.atPath }).newfid; in v9fs_tmkdir() 848 .path = opt.atPath }).newfid; in v9fs_tlcreate() 912 .path = opt.atPath }).newfid; in v9fs_tsymlink() 969 .path = opt.atPath }).newfid; in v9fs_tlink() 973 .path = opt.toPath }).newfid; in v9fs_tlink() 1021 .path = opt.atPath }).newfid; in v9fs_tunlinkat()
|
H A D | virtio-9p-client.h | 85 uint32_t newfid; member 105 uint32_t newfid; member
|
/openbmc/qemu/hw/9pfs/ |
H A D | trace-events | 14 …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 D | 9p.c | 1788 int32_t fid, newfid; in v9fs_walk() local 1796 err = pdu_unmarshal(pdu, offset, "ddw", &fid, &newfid, &nwnames); in v9fs_walk() 1803 trace_v9fs_walk(pdu->tag, pdu->id, fid, newfid, nwnames); in v9fs_walk() 1933 if (fid == newfid) { in v9fs_walk() 1942 newfidp = alloc_fid(s, newfid); in v9fs_walk() 3869 int32_t fid, newfid; in v9fs_xattrwalk() local 3876 err = pdu_unmarshal(pdu, offset, "dds", &fid, &newfid, &name); in v9fs_xattrwalk() 3880 trace_v9fs_xattrwalk(pdu->tag, pdu->id, fid, newfid, name.data); in v9fs_xattrwalk() 3887 xattr_fidp = alloc_fid(s, newfid); in v9fs_xattrwalk()
|