hw/xen: Implement EVTCHNOP_status

This adds the basic structure for maintaining the port table and reporting
the status of ports therein.

Signed-off-by: David Woodhouse <dwmw@amazon.co.uk>
Reviewed-by: Paul Durrant <paul@xen.org>
This commit is contained in:
David Woodhouse 2022-12-13 13:29:46 +00:00
parent 27d4075dd8
commit 4858ba2065
3 changed files with 125 additions and 2 deletions

View file

@ -15,4 +15,7 @@
void xen_evtchn_create(void);
int xen_evtchn_set_callback_param(uint64_t param);
struct evtchn_status;
int xen_evtchn_status_op(struct evtchn_status *status);
#endif /* QEMU_XEN_EVTCHN_H */