| 104 | } |
| 105 | |
| 106 | static uint64_t |
| 107 | get_blk_size(int fd) |
| 108 | { |
| 109 | struct stat stat; |
| 110 | int ret; |
| 111 | |
| 112 | ret = fstat(fd, &stat); |
| 113 | return ret == -1 ? (uint64_t)-1 : (uint64_t)stat.st_blksize; |
| 114 | } |
| 115 | |
| 116 | static void |
| 117 | async_dma_map(struct virtio_net *dev, bool do_map) |
no outgoing calls
no test coverage detected