diff options
| author | David Woodhouse <dwmw@amazon.co.uk> | 2022-12-14 19:27:38 +0000 |
|---|---|---|
| committer | David Woodhouse <dwmw@amazon.co.uk> | 2023-03-01 08:22:50 +0000 |
| commit | 306670461bb19e7af42b3d68d007d7690efd2334 (patch) | |
| tree | 41f22823e484fd5ff5f7ad2a477cb6e8fe8a5955 /hw/i386/kvm/xen_evtchn.h | |
| parent | 8432788104b6b4843738edbc5cf084b2a3687ee9 (diff) | |
| download | focaccia-qemu-306670461bb19e7af42b3d68d007d7690efd2334.tar.gz focaccia-qemu-306670461bb19e7af42b3d68d007d7690efd2334.zip | |
hw/xen: Implement EVTCHNOP_bind_vcpu
Signed-off-by: David Woodhouse <dwmw@amazon.co.uk> Reviewed-by: Paul Durrant <paul@xen.org>
Diffstat (limited to 'hw/i386/kvm/xen_evtchn.h')
| -rw-r--r-- | hw/i386/kvm/xen_evtchn.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/i386/kvm/xen_evtchn.h b/hw/i386/kvm/xen_evtchn.h index 1ebc7580eb..486b031c82 100644 --- a/hw/i386/kvm/xen_evtchn.h +++ b/hw/i386/kvm/xen_evtchn.h @@ -23,6 +23,7 @@ struct evtchn_bind_ipi; struct evtchn_send; struct evtchn_alloc_unbound; struct evtchn_bind_interdomain; +struct evtchn_bind_vcpu; int xen_evtchn_status_op(struct evtchn_status *status); int xen_evtchn_close_op(struct evtchn_close *close); int xen_evtchn_unmask_op(struct evtchn_unmask *unmask); @@ -31,5 +32,6 @@ int xen_evtchn_bind_ipi_op(struct evtchn_bind_ipi *ipi); int xen_evtchn_send_op(struct evtchn_send *send); int xen_evtchn_alloc_unbound_op(struct evtchn_alloc_unbound *alloc); int xen_evtchn_bind_interdomain_op(struct evtchn_bind_interdomain *interdomain); +int xen_evtchn_bind_vcpu_op(struct evtchn_bind_vcpu *vcpu); #endif /* QEMU_XEN_EVTCHN_H */ |