| /* SPDX-License-Identifier: GPL-2.0 */ |
| #ifndef _LINUX_VHOST_IOTLB_H |
| #define _LINUX_VHOST_IOTLB_H |
| #include <linux/interval_tree_generic.h> |
| #define VHOST_IOTLB_FLAG_RETIRE 0x1 |
| struct rb_root_cached root; |
| int vhost_iotlb_add_range(struct vhost_iotlb *iotlb, u64 start, u64 last, |
| u64 addr, unsigned int perm); |
| void vhost_iotlb_del_range(struct vhost_iotlb *iotlb, u64 start, u64 last); |
| struct vhost_iotlb *vhost_iotlb_alloc(unsigned int limit, unsigned int flags); |
| void vhost_iotlb_free(struct vhost_iotlb *iotlb); |
| void vhost_iotlb_reset(struct vhost_iotlb *iotlb); |
| vhost_iotlb_itree_first(struct vhost_iotlb *iotlb, u64 start, u64 last); |
| vhost_iotlb_itree_next(struct vhost_iotlb_map *map, u64 start, u64 last); |
| void vhost_iotlb_map_free(struct vhost_iotlb *iotlb, |
| struct vhost_iotlb_map *map); |