OSDN Git Service

xen: Switch to libxengnttab interface for compat shims.
authorIan Campbell <ian.campbell@citrix.com>
Fri, 15 Jan 2016 13:23:39 +0000 (13:23 +0000)
committerStefano Stabellini <stefano.stabellini@eu.citrix.com>
Tue, 26 Jan 2016 17:19:28 +0000 (17:19 +0000)
commitc1345a88785b50ba2bf5e87b83c7e22f6b4ec83d
treeb33273e1cc6b0ed2fbcc10525e46f539525e3b74
parenta2db2a1edd06a50b8a862c654cf993368cf9f1d9
xen: Switch to libxengnttab interface for compat shims.

In Xen 4.7 we are refactoring parts libxenctrl into a number of
separate libraries which will provide backward and forward API and ABI
compatiblity.

One such library will be libxengnttab which provides access to grant
tables.

In preparation for this switch the compatibility layer in xen_common.h
(which support building with older versions of Xen) to use what will
be the new library API. This means that the gnttab shim will disappear
for versions of Xen which include libxengnttab.

To simplify things for the <= 4.0.0 support we wrap the int fd in a
malloc(sizeof int) such that the handle is always a pointer. This
leads to less typedef headaches and the need for
XC_HANDLER_INITIAL_VALUE etc for these interfaces.

Note that this patch does not add any support for actually using
libxengnttab, it just adjusts the existing shims.

Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Reviewed-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
hw/block/xen_disk.c
hw/char/xen_console.c
hw/net/xen_nic.c
hw/xen/xen_backend.c
include/hw/xen/xen_backend.h
include/hw/xen/xen_common.h