Home
last modified time | relevance | path

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

/freebsd-13-stable/sys/dev/pci/
HDpci_iov.c1005 rman_res_t bar_start, bar_end; in pci_vf_alloc_mem_resource() local
1018 bar_end = bar_start + bar_length - 1; in pci_vf_alloc_mem_resource()
1021 if (bar_start >= end || bar_end <= bar_start || count != 1) in pci_vf_alloc_mem_resource()
1027 if (bar_end > end) in pci_vf_alloc_mem_resource()
1028 bar_end = end; in pci_vf_alloc_mem_resource()
1029 bar_length = bar_end - bar_start + 1; in pci_vf_alloc_mem_resource()
1031 res = rman_reserve_resource(&iov->rman, bar_start, bar_end, in pci_vf_alloc_mem_resource()
1037 bar_start, bar_end, 1); in pci_vf_alloc_mem_resource()