Home
last modified time | relevance | path

Searched refs:ArchIpiTarget (Results 1 – 1 of 1) sorted by relevance

/DragonOS/kernel/src/arch/x86_64/interrupt/
H A Dipi.rs55 pub enum ArchIpiTarget { enum
66 impl From<IpiTarget> for ArchIpiTarget { implementation
69 IpiTarget::Current => ArchIpiTarget::Current, in from()
70 IpiTarget::All => ArchIpiTarget::All, in from()
71 IpiTarget::Other => ArchIpiTarget::Other, in from()
73 ArchIpiTarget::Specified(Self::cpu_id_to_apic_id(cpu_id)) in from()
79 impl From<ArchIpiTarget> for ApicId {
80 fn from(val: ArchIpiTarget) -> Self { in from()
81 if let ArchIpiTarget::Specified(id) = val { in from()
91 impl ArchIpiTarget { impl
[all …]