Home
last modified time | relevance | path

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

/titanic_41/usr/src/uts/common/xen/os/
H A Dxvdi.c518 gnttab_unmap_grant_ref_t unmapop; in xvdi_map_ring() local
581 unmapop.host_addr = (uint64_t)(uintptr_t)ringva; in xvdi_map_ring()
582 unmapop.handle = ring->xr_grant_hdl; in xvdi_map_ring()
583 unmapop.dev_bus_addr = NULL; in xvdi_map_ring()
584 (void) HYPERVISOR_grant_table_op(GNTTABOP_unmap_grant_ref, &unmapop, 1); in xvdi_map_ring()
599 gnttab_unmap_grant_ref_t unmapop; in xvdi_unmap_ring() local
604 unmapop.host_addr = (uint64_t)(uintptr_t)ring->xr_vaddr; in xvdi_unmap_ring()
605 unmapop.handle = ring->xr_grant_hdl; in xvdi_unmap_ring()
606 unmapop.dev_bus_addr = NULL; in xvdi_unmap_ring()
607 (void) HYPERVISOR_grant_table_op(GNTTABOP_unmap_grant_ref, &unmapop, 1); in xvdi_unmap_ring()
/titanic_41/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 = NULL; 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()