We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
While looking over bio changes, I noticed the commit of torvalds/linux@2b24e6f said
bio
With the introduction of BIO_NO_PAGE_REF we've used up all available bits in bio::bi_flags.
This didn't sound correct, as we are using a shift of 20 for our custom flag.
Turns out, bi_flags has been unsigned short since 4.8: torvalds/linux@c0acf12
bi_flags
unsigned short
And with the introduction of BIO_NO_PAGE_REF in 5.1, we're out of usable bits.
BIO_NO_PAGE_REF
The text was updated successfully, but these errors were encountered:
crawfxrd
Successfully merging a pull request may close this issue.
While looking over
bio
changes, I noticed the commit of torvalds/linux@2b24e6f saidThis didn't sound correct, as we are using a shift of 20 for our custom flag.
Turns out,
bi_flags
has beenunsigned short
since 4.8: torvalds/linux@c0acf12And with the introduction of
BIO_NO_PAGE_REF
in 5.1, we're out of usable bits.The text was updated successfully, but these errors were encountered: