1 #include <linux/kernel.h>
2 #include <linux/string.h>
4 #include <linux/export.h>
5 #include <asm/hypervisor.h>
6 #include <asm/xen/hypercall.h>
8 int xen_event_channel_op_compat(int cmd, void *arg)
14 memcpy(&op.u, arg, sizeof(op.u));
15 rc = _hypercall1(int, event_channel_op_compat, &op);
20 case EVTCHNOP_bind_vcpu:
25 #define COPY_BACK(eop) \
26 case EVTCHNOP_##eop: \
27 memcpy(arg, &op.u.eop, sizeof(op.u.eop)); \
30 COPY_BACK(bind_interdomain);
34 COPY_BACK(alloc_unbound);
39 WARN_ON(rc != -ENOSYS);
45 EXPORT_SYMBOL_GPL(xen_event_channel_op_compat);
47 int xen_physdev_op_compat(int cmd, void *arg)
53 memcpy(&op.u, arg, sizeof(op.u));
54 rc = _hypercall1(int, physdev_op_compat, &op);
57 case PHYSDEVOP_IRQ_UNMASK_NOTIFY:
58 case PHYSDEVOP_set_iopl:
59 case PHYSDEVOP_set_iobitmap:
60 case PHYSDEVOP_apic_write:
64 #define COPY_BACK(pop, fld) \
65 case PHYSDEVOP_##pop: \
66 memcpy(arg, &op.u.fld, sizeof(op.u.fld)); \
69 COPY_BACK(irq_status_query, irq_status_query);
70 COPY_BACK(apic_read, apic_op);
71 COPY_BACK(ASSIGN_VECTOR, irq_op);
75 WARN_ON(rc != -ENOSYS);
81 EXPORT_SYMBOL_GPL(xen_physdev_op_compat);