Home
last modified time | relevance | path

Searched refs:iounit (Results 1 – 5 of 5) sorted by relevance

/qemu/scripts/
H A Danalyse-9p-simpletrace.py120 def v9fs_open_return(self, tag, id, type, version, path, iounit): argument
121 … tag, ", qid={type =", type, ", version =", version, ", path =", path, "}, iounit =", iounit, ")")
126 def v9fs_lcreate_return(self, tag, id, type, version, path, iounit): argument
127 … tag, ", qid={type =", type, ", version =", version, ", path =", path, "}, iounit =", iounit, ")")
156 def v9fs_create_return(self, tag, id, type, version, path, iounit): argument
157 … tag, ", qid={type =", type, ", version =", version, ", path =", path, "}, iounit =", iounit, ")")
/qemu/hw/9pfs/
H A Dtrace-events17 …ype, uint32_t version, uint64_t path, int iounit) "tag %u id %u qid={type %u version %u path %"PRI…
19 … uint32_t version, uint64_t path, int32_t iounit) "tag %u id %u qid={type %u version %u path %"PRI…
29 …ype, uint32_t version, uint64_t path, int iounit) "tag %u id %u qid={type %u version %u path %"PRI…
H A D9p.c1339 int32_t iounit = 0; in blksize_to_iounit() local
1347 iounit = QEMU_ALIGN_DOWN(s->msize - P9_IOHDRSZ, blksize); in blksize_to_iounit()
1349 if (!iounit) { in blksize_to_iounit()
1350 iounit = s->msize - P9_IOHDRSZ; in blksize_to_iounit()
1352 return iounit; in blksize_to_iounit()
2042 int iounit = 0; in v9fs_open() local
2124 iounit = get_iounit(pdu, &fidp->path); in v9fs_open()
2125 err = pdu_marshal(pdu, offset, "Qd", &qid, iounit); in v9fs_open()
2132 qid.type, qid.version, qid.path, iounit); in v9fs_open()
2149 int32_t iounit; in v9fs_lcreate() local
[all …]
/qemu/tests/qtest/libqos/
H A Dvirtio-9p-client.h260 uint32_t *iounit; member
376 uint32_t *iounit; member
512 void v9fs_rlopen(P9Req *req, v9fs_qid *qid, uint32_t *iounit);
520 void v9fs_rlcreate(P9Req *req, v9fs_qid *qid, uint32_t *iounit);
H A Dvirtio-9p-client.c708 g_assert(!opt.expectErr || !(opt.rlopen.qid || opt.rlopen.iounit)); in v9fs_tlopen()
721 v9fs_rlopen(req, opt.rlopen.qid, opt.rlopen.iounit); in v9fs_tlopen()
730 void v9fs_rlopen(P9Req *req, v9fs_qid *qid, uint32_t *iounit) in v9fs_rlopen() argument
738 if (iounit) { in v9fs_rlopen()
739 v9fs_uint32_read(req, iounit); in v9fs_rlopen()
893 g_assert(!opt.expectErr || !(opt.rlcreate.qid || opt.rlcreate.iounit)); in v9fs_tlcreate()
924 v9fs_rlcreate(req, opt.rlcreate.qid, opt.rlcreate.iounit); in v9fs_tlcreate()
933 void v9fs_rlcreate(P9Req *req, v9fs_qid *qid, uint32_t *iounit) in v9fs_rlcreate() argument
941 if (iounit) { in v9fs_rlcreate()
942 v9fs_uint32_read(req, iounit); in v9fs_rlcreate()