| 54 | } |
| 55 | |
| 56 | static void |
| 57 | vhost_user_iotlb_set_dump(struct vhost_iotlb_entry *node) |
| 58 | { |
| 59 | uint64_t start; |
| 60 | |
| 61 | start = node->uaddr + node->uoffset; |
| 62 | mem_set_dump((void *)(uintptr_t)start, node->size, true, RTE_BIT64(node->page_shift)); |
| 63 | } |
| 64 | |
| 65 | static void |
| 66 | vhost_user_iotlb_clear_dump(struct vhost_iotlb_entry *node, |
no test coverage detected