| 581 | } |
| 582 | |
| 583 | static void |
| 584 | free_task_pool(struct vhost_blk_ctrlr *ctrlr) |
| 585 | { |
| 586 | int i; |
| 587 | |
| 588 | for (i = 0; i < NUM_OF_BLK_QUEUES; i++) |
| 589 | rte_free(ctrlr->queues[i].tasks); |
| 590 | } |
| 591 | |
| 592 | static int |
| 593 | new_device(int vid) |
no test coverage detected