Searched refs:dfid (Results 1 – 5 of 5) sorted by relevance
/qemu/scripts/ |
H A D | analyse-9p-simpletrace.py | 123 def v9fs_lcreate(self, tag, id, dfid, flags, mode, gid): argument 124 …print("TLCREATE (tag =", tag, ", dfid =", dfid, ", flags =", oct(flags), ", mode =", oct(mode), ",… 168 def v9fs_link(self, tag, id, dfid, oldfid, name): argument 169 … print("TLINK (tag =", tag, ", dfid =", dfid, ", oldfid =", oldfid, ", name =", name, ")")
|
/qemu/hw/9pfs/ |
H A D | trace-events | 18 …_lcreate(uint16_t tag, uint8_t id, int32_t dfid, int32_t flags, int32_t mode, uint32_t gid) "tag %… 33 v9fs_link(uint16_t tag, uint8_t id, int32_t dfid, int32_t oldfid, char* name) "tag %d id %d dfid %d…
|
H A D | 9p.c | 2141 int32_t dfid, flags, mode; in v9fs_lcreate() local 2153 err = pdu_unmarshal(pdu, offset, "dsddd", &dfid, in v9fs_lcreate() 2158 trace_v9fs_lcreate(pdu->tag, pdu->id, dfid, flags, mode, gid); in v9fs_lcreate() 2170 fidp = get_fid(pdu, dfid); in v9fs_lcreate() 3029 int32_t dfid; in v9fs_symlink() local 3036 err = pdu_unmarshal(pdu, offset, "dssd", &dfid, &name, &symname, &gid); in v9fs_symlink() 3040 trace_v9fs_symlink(pdu->tag, pdu->id, dfid, name.data, symname.data, gid); in v9fs_symlink() 3052 dfidp = get_fid(pdu, dfid); in v9fs_symlink() 3122 int32_t dfid, oldfid; in v9fs_link() local 3129 err = pdu_unmarshal(pdu, offset, "dds", &dfid, &oldfid, &name); in v9fs_link() [all …]
|
/qemu/tests/qtest/libqos/ |
H A D | virtio-9p-client.c | 831 g_assert(!opt.atPath || !opt.dfid); in v9fs_tmkdir() 836 opt.dfid = v9fs_twalk((TWalkOpt) { .client = opt.client, in v9fs_tmkdir() 851 v9fs_uint32_write(req, opt.dfid); in v9fs_tmkdir() 1012 g_assert(!opt.atPath || !opt.dfid); in v9fs_tlink() 1017 opt.dfid = v9fs_twalk((TWalkOpt) { .client = opt.client, in v9fs_tlink() 1032 v9fs_uint32_write(req, opt.dfid); in v9fs_tlink()
|
H A D | virtio-9p-client.h | 329 uint32_t dfid; member 429 uint32_t dfid; member
|