hvmloader is unhosted, and shouldn't use the system errno.h. It already has
to use Xen's errno.h for other hypercalls. The use of public/io/xs_wire.h
requires the use of un-prefixed errno values.
This fixes the build on stricter toolchains where requesting -fno-builtin does
reduce the include path as much as it can.
Reported-by: Doug Goldstein <cardoe@cardoe.com>
Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
Reviewed-by: Doug Goldstein <cardoe@cardoe.com>
Reviewed-by: Wei Liu <wei.liu2@citrix.com>
Acked-by: Jan Beulich <jbeulich@suse.com>
(cherry picked from commit
305e957ffee94fc06c4ba53ef5562f1b8c1c6b02)
#include <xen/hvm/hvm_info_table.h>
#include "e820.h"
+/* Request un-prefixed values from errno.h. */
+#define XEN_ERRNO(name, value) name = value,
+enum {
+#include <xen/errno.h>
+};
+
+/* Cause xs_wire.h to give us xsd_errors[]. */
+#define EINVAL EINVAL
+
#define __STR(...) #__VA_ARGS__
#define STR(...) __STR(__VA_ARGS__)
#include "util.h"
#include "hypercall.h"
#include "vnuma.h"
-#include <xen/errno.h>
unsigned int nr_vnodes, nr_vmemranges;
unsigned int *vcpu_to_vnode, *vdistance;
struct xen_vnuma_topology_info vnuma_topo = { .domid = DOMID_SELF };
rc = hypercall_memory_op(XENMEM_get_vnumainfo, &vnuma_topo);
- if ( rc != -XEN_ENOBUFS )
+ if ( rc != -ENOBUFS )
return;
ASSERT(vnuma_topo.nr_vcpus == hvm_info->nr_vcpus);
#include "util.h"
#include "hypercall.h"
-#include <errno.h>
#include <xen/sched.h>
#include <xen/event_channel.h>
#include <xen/hvm/params.h>