Home
last modified time | relevance | path

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

/openbmc/linux/arch/sparc/mm/
H A Dio-unit.c43 struct iounit_struct *iounit; in iounit_iommu_init() local
48 if (!iounit) { in iounit_iommu_init()
66 op->dev.archdata.iommu = iounit; in iounit_iommu_init()
67 iounit->page_table = xpt; in iounit_iommu_init()
68 spin_lock_init(&iounit->lock); in iounit_iommu_init()
115 rotor = iounit->rotor[j - 1]; in iounit_get_area()
116 limit = iounit->limit[j]; in iounit_get_area()
122 scan = iounit->limit[j - 1]; in iounit_get_area()
133 iounit->rotor[j - 1] = (scan < limit) ? scan : iounit->limit[j - 1]; in iounit_get_area()
138 set_bit(scan, iounit->bmap); in iounit_get_area()
[all …]
/openbmc/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, ")")
/openbmc/qemu/tests/qtest/libqos/
H A Dvirtio-9p-client.h228 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 Dvirtio-9p-client.c658 g_assert(!opt.expectErr || !(opt.rlopen.qid || opt.rlopen.iounit)); in v9fs_tlopen()
671 v9fs_rlopen(req, opt.rlopen.qid, opt.rlopen.iounit); in v9fs_tlopen()
680 void v9fs_rlopen(P9Req *req, v9fs_qid *qid, uint32_t *iounit) in v9fs_rlopen() argument
688 if (iounit) { in v9fs_rlopen()
689 v9fs_uint32_read(req, iounit); in v9fs_rlopen()
843 g_assert(!opt.expectErr || !(opt.rlcreate.qid || opt.rlcreate.iounit)); in v9fs_tlcreate()
874 v9fs_rlcreate(req, opt.rlcreate.qid, opt.rlcreate.iounit); in v9fs_tlcreate()
883 void v9fs_rlcreate(P9Req *req, v9fs_qid *qid, uint32_t *iounit) in v9fs_rlcreate() argument
891 if (iounit) { in v9fs_rlcreate()
892 v9fs_uint32_read(req, iounit); in v9fs_rlcreate()
/openbmc/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.c1312 int32_t iounit = 0; in blksize_to_iounit() local
1322 if (!iounit) { in blksize_to_iounit()
1323 iounit = s->msize - P9_IOHDRSZ; in blksize_to_iounit()
1325 return iounit; in blksize_to_iounit()
1976 int iounit = 0; in v9fs_open() local
2051 iounit = get_iounit(pdu, &fidp->path); in v9fs_open()
2076 int32_t iounit; in v9fs_lcreate() local
2122 iounit = get_iounit(pdu, &fidp->path); in v9fs_lcreate()
2127 err = pdu_marshal(pdu, offset, "Qd", &qid, iounit); in v9fs_lcreate()
2756 int iounit; in v9fs_create() local
[all …]
/openbmc/linux/net/9p/
H A Dclient.c1224 int iounit; in p9_client_open() local
1250 qid.path, qid.version, iounit); in p9_client_open()
1254 fid->iounit = iounit; in p9_client_open()
1269 int iounit; in p9_client_create_dotl() local
1298 ofid->iounit = iounit; in p9_client_create_dotl()
1314 int iounit; in p9_client_fcreate() local
1337 qid.type, qid.path, qid.version, iounit); in p9_client_fcreate()
1341 fid->iounit = iounit; in p9_client_fcreate()
1547 rsize = fid->iounit; in p9_client_read_once()
1616 int rsize = fid->iounit; in p9_client_write()
[all …]
/openbmc/linux/include/net/9p/
H A Dclient.h154 u32 iounit; member