| 50 | static enum CTRLR_WORKER_STATUS worker_thread_status; |
| 51 | |
| 52 | struct vhost_blk_ctrlr * |
| 53 | vhost_blk_ctrlr_find(const char *ctrlr_name) |
| 54 | { |
| 55 | if (ctrlr_name == NULL) |
| 56 | return NULL; |
| 57 | |
| 58 | /* currently we only support 1 socket file fd */ |
| 59 | return g_vhost_ctrlr; |
| 60 | } |
| 61 | |
| 62 | static uint64_t |
| 63 | gpa_to_vva(struct vhost_blk_ctrlr *ctrlr, uint64_t gpa, uint64_t *len) |
no outgoing calls
no test coverage detected