Lines Matching refs:start
1120 * work queue: the RESCIND handler can not start to
1149 * works by the time these works will start execution.
1973 resource_size_t start = 0;
1988 start = res->data.address32.address.minimum;
1993 start = res->data.address64.address.minimum;
2011 vmbus_irq = r.start;
2031 if (end > VTPM_BASE_ADDRESS && start < VTPM_BASE_ADDRESS)
2036 new_res->start = start;
2048 if (((*old_res)->end + 1) == new_res->start) {
2054 if ((*old_res)->start == new_res->end + 1) {
2055 (*old_res)->start = new_res->start;
2060 if ((*old_res)->start > new_res->end) {
2084 __release_region(hyperv_mmio, fb_mmio->start,
2098 resource_size_t start = 0, size;
2103 start = screen_info.lfb_base;
2113 start = pci_resource_start(pdev, 0);
2124 if (!start)
2130 * be underreported, particularly in a Generation 1 VM. So start out
2134 fb_mmio = __request_region(hyperv_mmio, start, size, fb_mmio_name, 0);
2166 resource_size_t range_min, range_max, start, end;
2179 !(max < fb_mmio->start)) {
2181 range_min = fb_mmio->start;
2183 start = (range_min + align - 1) & ~(align - 1);
2184 for (; start + size - 1 <= range_max; start += align) {
2185 *new = request_mem_region_exclusive(start, size, dev_n);
2194 if ((iter->start >= max) || (iter->end <= min))
2197 range_min = iter->start;
2199 start = (range_min + align - 1) & ~(align - 1);
2200 for (; start + size - 1 <= range_max; start += align) {
2201 end = start + size - 1;
2205 (((start >= fb_mmio->start) && (start <= fb_mmio->end)) ||
2206 ((end >= fb_mmio->start) && (end <= fb_mmio->end))))
2209 shadow = __request_region(iter, start, size, NULL,
2214 *new = request_mem_region_exclusive(start, size, dev_n);
2221 __release_region(iter, start, size);
2233 * @start: Base address of region to release.
2239 void vmbus_free_mmio(resource_size_t start, resource_size_t size)
2245 if ((iter->start >= start + size) || (iter->end <= start))
2248 __release_region(iter, start, size);
2250 release_mem_region(start, size);
2342 res->start = range.cpu_addr;