| 72 | KernelDevice *bdev; |
| 73 | explicit AioCompletionThread(KernelDevice *b) : bdev(b) {} |
| 74 | void *entry() override { |
| 75 | bdev->_aio_thread(); |
| 76 | return NULL; |
| 77 | } |
| 78 | } aio_thread; |
| 79 | |
| 80 | struct DiscardThread : public Thread { |
nothing calls this directly
no test coverage detected