-
Notifications
You must be signed in to change notification settings - Fork 17
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
Add support for x86 MSI and IOAPIC IRQs #96
Conversation
0dfacf0
to
46bc023
Compare
6ab0992
to
01ebf09
Compare
&cslot_to_relative_cptr(slot), | ||
)?; | ||
} | ||
#[sel4_cfg(any(ARCH_IA32, ARCH_X86_64))] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did this because #[sel4_cfg(ARCH_X86_64)]
doesn't work currently
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you clarify what change is this comment about?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry, I made a typo in my comment. I meant that it would be better to do a generic x86 (by checking CONFIG_ARCH_X86
) check but that doesn't work at this moment due to
rust-sel4/crates/sel4/src/arch/mod.rs
Line 10 in d3341ea
// sel4-config doesn't yet play nicely with: |
&cslot_to_relative_cptr(slot), | ||
)?; | ||
} | ||
#[sel4_cfg(any(ARCH_IA32, ARCH_X86_64))] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you clarify what change is this comment about?
01ebf09
to
b8a6013
Compare
85ce186
to
8074452
Compare
8074452
to
ec50d02
Compare
Signed-off-by: Ivan Velickovic <[email protected]>
ec50d02
to
0d70d98
Compare
I think it's ready to go now. |
Thanks! |
Depends on coliasgroup/capdl#1.