xen: Fix ring.h header
commitd297e533a5f653336dbc1c5a24ea196391dff9f5
authorAnthony PERARD <anthony.perard@citrix.com>
Thu, 4 Jul 2019 15:36:05 +0000 (4 16:36 +0100)
committerAnthony PERARD <anthony.perard@citrix.com>
Tue, 27 Aug 2019 13:18:28 +0000 (27 14:18 +0100)
treecede90cfd71f48c3261d04f6218df9a1b6da8031
parentdac03af5d5482ec7ee9c23db467bb7230b33c0d9
xen: Fix ring.h header

The xen_[rw]?mb() macros defined in ring.h can't be used and the fact
that there are gated behind __XEN_INTERFACE_VERSION__ means that it
needs to be defined somewhere. QEMU doesn't implement interfaces with
the Xen hypervisor so defining __XEN_INTERFACE_VERSION__ is pointless.
This leads to:
    include/hw/xen/io/ring.h:47:5: error: "__XEN_INTERFACE_VERSION__"
        is not defined, evaluates to 0 [-Werror=undef]

Cleanup ring.h. The xen_*mb() macros are already defined in xenctrl.h
which is included in xen_common.h.

Reported-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20190704153605.4140-1-anthony.perard@citrix.com>
[aperard: Adding the comment proposed upstream]
Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>
include/hw/xen/interface/io/ring.h