Home
last modified time | relevance | path

Searched refs:unmapop (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/uts/common/xen/os/
H A Dxvdi.c528 gnttab_unmap_grant_ref_t unmapop; in xvdi_map_ring() local
591 unmapop.host_addr = (uint64_t)(uintptr_t)ringva; in xvdi_map_ring()
592 unmapop.handle = ring->xr_grant_hdl; in xvdi_map_ring()
593 unmapop.dev_bus_addr = 0; in xvdi_map_ring()
594 (void) HYPERVISOR_grant_table_op(GNTTABOP_unmap_grant_ref, &unmapop, 1); in xvdi_map_ring()
609 gnttab_unmap_grant_ref_t unmapop; in xvdi_unmap_ring() local
614 unmapop.host_addr = (uint64_t)(uintptr_t)ring->xr_vaddr; in xvdi_unmap_ring()
615 unmapop.handle = ring->xr_grant_hdl; in xvdi_unmap_ring()
616 unmapop.dev_bus_addr = 0; in xvdi_unmap_ring()
617 (void) HYPERVISOR_grant_table_op(GNTTABOP_unmap_grant_ref, &unmapop, 1); in xvdi_unmap_ring()
/illumos-gate/usr/src/uts/common/xen/io/
H A Dxdb.c367 gnttab_unmap_grant_ref_t unmapop; in xdb_get_buf() local
372 unmapop.host_addr = in xdb_get_buf()
375 unmapop.dev_bus_addr = 0; in xdb_get_buf()
376 unmapop.handle = mapops[i].handle; in xdb_get_buf()
378 GNTTABOP_unmap_grant_ref, &unmapop, 1); in xdb_get_buf()