Lines Matching defs:start
16 #define START(map) ((map)->start)
41 * @start: start of the IOVA range
43 * @addr: the address that is mapped to @start
46 * Returns an error last is smaller than start or memory allocation
50 u64 start, u64 last,
55 if (last < start)
69 map->start = start;
70 map->size = last - start + 1;
88 * @start: start of the IOVA range
91 void vhost_iotlb_del_range(struct vhost_iotlb *iotlb, u64 start, u64 last)
96 start, last)))
151 * @start: start of IOVA range
155 vhost_iotlb_itree_first(struct vhost_iotlb *iotlb, u64 start, u64 last)
157 return vhost_iotlb_itree_iter_first(&iotlb->root, start, last);
164 * @start: start of IOVA range
168 vhost_iotlb_itree_next(struct vhost_iotlb_map *map, u64 start, u64 last)
170 return vhost_iotlb_itree_iter_next(map, start, last);