tokio-rs / io-uring

The `io_uring` library for Rust
Apache License 2.0
1.19k stars 131 forks source link

Add various builder flags introduced in newer kernel versions #250

Closed Dev380 closed 10 months ago

Dev380 commented 10 months ago

I added a few more flags from the manpage. that seem like they're harmless to add to the API trivially.

quininer commented 10 months ago

These are not builder flags, but feature flags filled by kernel. please refer to Parameters::is_feature_single_mmap to add it.

Dev380 commented 10 months ago

Sorry, I assumed everything that's configurable would be in Builder because monoio wants a Builder to create its runtime.