Home
last modified time | relevance | path

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

/freebsd/sys/dev/xen/privcmd/
H A Dprivcmd.c70 struct resource *pseudo_phys_res; member
138 map->pseudo_phys_res); in privcmd_pg_dtor()
191 map->pseudo_phys_res = xenmem_alloc(privcmd_dev, in privcmd_mmap_single()
193 if (map->pseudo_phys_res == NULL) { in privcmd_mmap_single()
198 map->phys_base_addr = rman_get_start(map->pseudo_phys_res); in privcmd_mmap_single()
203 map->pseudo_phys_res); in privcmd_mmap_single()
/freebsd/sys/dev/xen/gntdev/
H A Dgntdev.c468 struct resource *pseudo_phys_res; member
607 gmap->map->pseudo_phys_res); in notify_unmap_cleanup()
1109 gmap_start->map->pseudo_phys_res = xenmem_alloc(gntdev_dev, in mmap_gmap()
1111 if (gmap_start->map->pseudo_phys_res == NULL) { in mmap_gmap()
1117 rman_get_start(gmap_start->map->pseudo_phys_res); in mmap_gmap()
1124 gmap_start->map->pseudo_phys_res); in mmap_gmap()
/freebsd/sys/dev/xen/netback/
H A Dnetback.c472 struct resource *pseudo_phys_res; member
621 if (xnb->pseudo_phys_res != NULL) { in xnb_free_communication_mem()
623 xnb->pseudo_phys_res); in xnb_free_communication_mem()
624 xnb->pseudo_phys_res = NULL; in xnb_free_communication_mem()
818 xnb->pseudo_phys_res = xenmem_alloc(xnb->dev, &xnb->pseudo_phys_res_id, in xnb_alloc_communication_mem()
820 if (xnb->pseudo_phys_res == NULL) { in xnb_alloc_communication_mem()
824 xnb->kva = (vm_offset_t)rman_get_virtual(xnb->pseudo_phys_res); in xnb_alloc_communication_mem()
825 xnb->gnt_base_addr = rman_get_start(xnb->pseudo_phys_res); in xnb_alloc_communication_mem()
/freebsd/sys/dev/xen/blkback/
H A Dblkback.c696 struct resource *pseudo_phys_res; member
2599 if (xbb->pseudo_phys_res != NULL) { in xbb_free_communication_mem()
2601 xbb->pseudo_phys_res); in xbb_free_communication_mem()
2602 xbb->pseudo_phys_res = NULL; in xbb_free_communication_mem()
2846 xbb->pseudo_phys_res = xenmem_alloc(xbb->dev, &xbb->pseudo_phys_res_id, in xbb_alloc_communication_mem()
2848 if (xbb->pseudo_phys_res == NULL) { in xbb_alloc_communication_mem()
2852 xbb->kva = (vm_offset_t)rman_get_virtual(xbb->pseudo_phys_res); in xbb_alloc_communication_mem()
2853 xbb->gnt_base_addr = rman_get_start(xbb->pseudo_phys_res); in xbb_alloc_communication_mem()
/freebsd/sys/dev/vt/hw/vga/
H A Dvt_vga.c1378 struct resource *pseudo_phys_res;
1382 pseudo_phys_res = bus_alloc_resource(dev, SYS_RES_MEMORY,
1385 if (pseudo_phys_res == NULL)
1366 struct resource *pseudo_phys_res; vtvga_attach() local