-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Decouple from smol
async runtime
#12
Comments
The |
I think that is definitely reasonable to not let libublk not bind with I will think a bit and try to move it into the rublk code. Then smol will become invisible for this library. Thanks, |
So far, UblkQueue can't cross threads, that is also what the ublk driver is implemented. But we are considering to try to relax this limit, please see the following |
The
ublk_wait_and_handle_ios
function has a hard dependency onsmol
for its async runtime. Is this necessary or canlibublk
be implemented independently of any particular runtime? I'd like to use tokio or monoio for my runtime and would prefer to avoid bloating my binary.The text was updated successfully, but these errors were encountered: