/openbmc/linux/arch/sparc/mm/ |
H A D | io-unit.c | 43 struct iounit_struct *iounit; in iounit_iommu_init() local 47 iounit = kzalloc(sizeof(struct iounit_struct), GFP_ATOMIC); in iounit_iommu_init() 48 if (!iounit) { in iounit_iommu_init() 53 iounit->limit[0] = IOUNIT_BMAP1_START; in iounit_iommu_init() 54 iounit->limit[1] = IOUNIT_BMAP2_START; in iounit_iommu_init() 55 iounit->limit[2] = IOUNIT_BMAPM_START; in iounit_iommu_init() 56 iounit->limit[3] = IOUNIT_BMAPM_END; in iounit_iommu_init() 57 iounit->rotor[1] = IOUNIT_BMAP2_START; in iounit_iommu_init() 58 iounit->rotor[2] = IOUNIT_BMAPM_START; in iounit_iommu_init() 66 op->dev.archdata.iommu = iounit; in iounit_iommu_init() [all …]
|
/openbmc/qemu/scripts/ |
H A D | analyse-9p-simpletrace.py | 120 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, ")")
|
/openbmc/qemu/tests/qtest/libqos/ |
H A D | virtio-9p-client.h | 228 uint32_t *iounit; member 344 uint32_t *iounit; member 478 void v9fs_rlopen(P9Req *req, v9fs_qid *qid, uint32_t *iounit); 486 void v9fs_rlcreate(P9Req *req, v9fs_qid *qid, uint32_t *iounit);
|
H A D | virtio-9p-client.c | 659 g_assert(!opt.expectErr || !(opt.rlopen.qid || opt.rlopen.iounit)); in v9fs_tlopen() 672 v9fs_rlopen(req, opt.rlopen.qid, opt.rlopen.iounit); in v9fs_tlopen() 681 void v9fs_rlopen(P9Req *req, v9fs_qid *qid, uint32_t *iounit) in v9fs_rlopen() argument 689 if (iounit) { in v9fs_rlopen() 690 v9fs_uint32_read(req, iounit); in v9fs_rlopen() 844 g_assert(!opt.expectErr || !(opt.rlcreate.qid || opt.rlcreate.iounit)); in v9fs_tlcreate() 875 v9fs_rlcreate(req, opt.rlcreate.qid, opt.rlcreate.iounit); in v9fs_tlcreate() 884 void v9fs_rlcreate(P9Req *req, v9fs_qid *qid, uint32_t *iounit) in v9fs_rlcreate() argument 892 if (iounit) { in v9fs_rlcreate() 893 v9fs_uint32_read(req, iounit); in v9fs_rlcreate()
|
/openbmc/qemu/hw/9pfs/ |
H A D | trace-events | 17 …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 D | 9p.c | 1312 int32_t iounit = 0; in blksize_to_iounit() local 1320 iounit = QEMU_ALIGN_DOWN(s->msize - P9_IOHDRSZ, blksize); in blksize_to_iounit() 1322 if (!iounit) { in blksize_to_iounit() 1323 iounit = s->msize - P9_IOHDRSZ; in blksize_to_iounit() 1325 return iounit; in blksize_to_iounit() 1978 int iounit = 0; in v9fs_open() local 2053 iounit = get_iounit(pdu, &fidp->path); in v9fs_open() 2054 err = pdu_marshal(pdu, offset, "Qd", &qid, iounit); in v9fs_open() 2061 qid.type, qid.version, qid.path, iounit); in v9fs_open() 2078 int32_t iounit; in v9fs_lcreate() local [all …]
|
/openbmc/linux/net/9p/ |
H A D | client.c | 1234 int iounit; in p9_client_open() local 1252 err = p9pdu_readf(&req->rc, clnt->proto_version, "Qd", &qid, &iounit); in p9_client_open() 1260 qid.path, qid.version, iounit); in p9_client_open() 1264 fid->iounit = iounit; in p9_client_open() 1279 int iounit; in p9_client_create_dotl() local 1297 err = p9pdu_readf(&req->rc, clnt->proto_version, "Qd", qid, &iounit); in p9_client_create_dotl() 1304 qid->type, qid->path, qid->version, iounit); in p9_client_create_dotl() 1308 ofid->iounit = iounit; in p9_client_create_dotl() 1324 int iounit; in p9_client_fcreate() local 1340 err = p9pdu_readf(&req->rc, clnt->proto_version, "Qd", &qid, &iounit); in p9_client_fcreate() [all …]
|
/openbmc/linux/include/net/9p/ |
H A D | client.h | 154 u32 iounit; member
|