diff options
| author | Gleb Natapov <[email protected]> | 2009-03-05 16:35:04 +0200 |
|---|---|---|
| committer | Avi Kivity <[email protected]> | 2009-06-10 11:48:27 +0300 |
| commit | 58c2dde17d6eb6c8c0566e52d184aa16755d890f (patch) | |
| tree | a968731cbce73932decd63e00be313cebfd2f57f /include/linux | |
| parent | e1035715ef8d3171e29f9c6aee6f40d57b3fead5 (diff) | |
KVM: APIC: get rid of deliver_bitmask
Deliver interrupt during destination matching loop.
Signed-off-by: Gleb Natapov <[email protected]>
Acked-by: Xiantao Zhang <[email protected]>
Signed-off-by: Marcelo Tosatti <[email protected]>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/kvm_types.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/linux/kvm_types.h b/include/linux/kvm_types.h index b84aca3c4ad1..fb46efbeabec 100644 --- a/include/linux/kvm_types.h +++ b/include/linux/kvm_types.h @@ -57,4 +57,14 @@ union kvm_ioapic_redirect_entry { } fields; }; +struct kvm_lapic_irq { + u32 vector; + u32 delivery_mode; + u32 dest_mode; + u32 level; + u32 trig_mode; + u32 shorthand; + u32 dest_id; +}; + #endif /* __KVM_TYPES_H__ */ |