-
Notifications
You must be signed in to change notification settings - Fork 169
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
The critical_section
implementation is wrong
#116
Comments
To prevent from using let mut mstatus: Mstatus;
asm!("csrrci {}, 0x300, 0b100", out(reg) mstatus.bits);
mstatus.mie() |
critical_section
implementation is wrongcritical_section
implementation is bad
critical_section
implementation is badcritical_section
implementation is wrong
almindor
added a commit
that referenced
this issue
Oct 16, 2022
Good find. Thanks, pushed PR, please review. I've decided to keep the bits |
almindor
added a commit
that referenced
this issue
Oct 16, 2022
Hmm actually we can't make the |
almindor
added a commit
that referenced
this issue
Oct 16, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
These two lines is not atomic and will cause problems
riscv/src/critical_section.rs
Lines 11 to 13 in d9c6076
and could be replaced by a single
csr
instruction:which prevents from being interrupted between reading status and disabling interrupt.
The text was updated successfully, but these errors were encountered: