| 139 | } |
| 140 | |
| 141 | static __rte_always_inline void |
| 142 | vhost_log_page(uint8_t *log_base, uint64_t page) |
| 143 | { |
| 144 | vhost_set_bit(page % 8, &log_base[page / 8]); |
| 145 | } |
| 146 | |
| 147 | void |
| 148 | __vhost_log_write(struct virtio_net *dev, uint64_t addr, uint64_t len) |
no test coverage detected