Lines Matching defs:start
8 u32 start;
19 pr_debug("Range %d->%d\n", cur->start, cur->end);
38 if ((cur->start - last_end) > size)
44 new->start = last_end + 1;
45 new->end = new->start + size - 1;
52 rc = new->start;
61 static void range_free(struct list_head *head, u32 start, u32 size,
68 if (cur->start == start && cur->end == (start + size - 1)) {
91 void ocxl_pasid_afu_free(struct ocxl_fn *fn, u32 start, u32 size)
93 return range_free(&fn->pasid_list, start, size, "afu pasid");
104 void ocxl_actag_afu_free(struct ocxl_fn *fn, u32 start, u32 size)
106 return range_free(&fn->actag_list, start, size, "afu actag");