Lines Matching full:last
17 #define LAST(map) ((map)->last) macro
21 START, LAST, static inline, vhost_iotlb_itree);
42 * @last: last of IOVA range
46 * Returns an error last is smaller than start or memory allocation
50 u64 start, u64 last, in vhost_iotlb_add_range() argument
55 if (last < start) in vhost_iotlb_add_range()
70 map->size = last - start + 1; in vhost_iotlb_add_range()
71 map->last = last; in vhost_iotlb_add_range()
89 * @last: last of IOVA range
91 void vhost_iotlb_del_range(struct vhost_iotlb *iotlb, u64 start, u64 last) in vhost_iotlb_del_range() argument
96 start, last))) in vhost_iotlb_del_range()
152 * @last: last byte in IOVA range
155 vhost_iotlb_itree_first(struct vhost_iotlb *iotlb, u64 start, u64 last) in vhost_iotlb_itree_first() argument
157 return vhost_iotlb_itree_iter_first(&iotlb->root, start, last); in vhost_iotlb_itree_first()
165 * @last: last byte IOVA range
168 vhost_iotlb_itree_next(struct vhost_iotlb_map *map, u64 start, u64 last) in vhost_iotlb_itree_next() argument
170 return vhost_iotlb_itree_iter_next(map, start, last); in vhost_iotlb_itree_next()