You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When IoRingDevice does not support event cancellation by handle it is possible that there will be a data race during event cancellation: multiple threads would access status of an event and try to write there. Because of that ntcf_system.t tests can fail sometimes.
Also, ntcs::Event currently is common for multiple drivers, probably we need to implement something specific for IoRing.
The text was updated successfully, but these errors were encountered:
Describe the bug
When IoRingDevice does not support event cancellation by handle it is possible that there will be a data race during event cancellation: multiple threads would access
status
of an event and try to write there. Because of that ntcf_system.t tests can fail sometimes.Also, ntcs::Event currently is common for multiple drivers, probably we need to implement something specific for IoRing.
The text was updated successfully, but these errors were encountered: