xen-operations.c (ba2a92db1ff682c16730b1d7f156bac61928f04d) | xen-operations.c (e2abfe5ec67b69fb310fbeaacf7e68d61d16609e) |
---|---|
1/* 2 * QEMU Xen backend support: Operations for true Xen 3 * 4 * Copyright © 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. 5 * 6 * Authors: David Woodhouse <dwmw2@infradead.org> 7 * 8 * This work is licensed under the terms of the GNU GPL, version 2 or later. 9 * See the COPYING file in the top-level directory. 10 */ 11 12#include "qemu/osdep.h" 13#include "qemu/uuid.h" 14#include "qapi/error.h" 15 | 1/* 2 * QEMU Xen backend support: Operations for true Xen 3 * 4 * Copyright © 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. 5 * 6 * Authors: David Woodhouse <dwmw2@infradead.org> 7 * 8 * This work is licensed under the terms of the GNU GPL, version 2 or later. 9 * See the COPYING file in the top-level directory. 10 */ 11 12#include "qemu/osdep.h" 13#include "qemu/uuid.h" 14#include "qapi/error.h" 15 |
16#include "hw/xen/xen_native.h" |
|
16#include "hw/xen/xen_backend_ops.h" | 17#include "hw/xen/xen_backend_ops.h" |
17#include "hw/xen/xen_common.h" | |
18 19/* 20 * If we have new enough libxenctrl then we do not want/need these compat 21 * interfaces, despite what the user supplied cflags might say. They 22 * must be undefined before including xenctrl.h 23 */ 24#undef XC_WANT_COMPAT_EVTCHN_API 25#undef XC_WANT_COMPAT_GNTTAB_API --- 453 unchanged lines hidden --- | 18 19/* 20 * If we have new enough libxenctrl then we do not want/need these compat 21 * interfaces, despite what the user supplied cflags might say. They 22 * must be undefined before including xenctrl.h 23 */ 24#undef XC_WANT_COMPAT_EVTCHN_API 25#undef XC_WANT_COMPAT_GNTTAB_API --- 453 unchanged lines hidden --- |