aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Tokarev <mjt@tls.msk.ru>2020-07-27 17:00:48 +0300
committerAnthony PERARD <anthony.perard@citrix.com>2020-10-19 16:22:58 +0100
commit5b6a8f4392146c9c130cf510f780dbf5ba7f6046 (patch)
tree63c7cf609271498624b61be6e845fc6a1261e640
parentd76f4f97eb2772bf85fe286097183d0c7db19ae8 (diff)
downloadqemu-5b6a8f4392146c9c130cf510f780dbf5ba7f6046.zip
qemu-5b6a8f4392146c9c130cf510f780dbf5ba7f6046.tar.gz
qemu-5b6a8f4392146c9c130cf510f780dbf5ba7f6046.tar.bz2
xen: xenguest is not used so is not needed
There's no references in only file which includes xenguest.h to any xen definitions. And there's no references to -lxenguest in qemu, either. Drop it. Signed-off-by: Michael Tokarev <mjt@tls.msk.ru> Reviewed-by: Anthony PERARD <anthony.perard@citrix.com> Message-Id: <20200727140048.19779-1-mjt@msgid.tls.msk.ru> [perard: rebased] Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>
-rwxr-xr-xconfigure4
-rw-r--r--hw/i386/xen/xen_platform.c2
2 files changed, 2 insertions, 4 deletions
diff --git a/configure b/configure
index a73fb87..e6754c1 100755
--- a/configure
+++ b/configure
@@ -2532,7 +2532,7 @@ if test "$xen" != "disabled" ; then
xen_ctrl_version="$(printf '%d%02d%02d' \
$($pkg_config --modversion xencontrol | sed 's/\./ /g') )"
xen=enabled
- xen_pc="xencontrol xenstore xenguest xenforeignmemory xengnttab"
+ xen_pc="xencontrol xenstore xenforeignmemory xengnttab"
xen_pc="$xen_pc xenevtchn xendevicemodel"
if $pkg_config --exists xentoolcore; then
xen_pc="$xen_pc xentoolcore"
@@ -2541,7 +2541,7 @@ if test "$xen" != "disabled" ; then
xen_libs="$($pkg_config --libs $xen_pc)"
else
- xen_libs="-lxenstore -lxenctrl -lxenguest"
+ xen_libs="-lxenstore -lxenctrl"
xen_stable_libs="-lxenforeignmemory -lxengnttab -lxenevtchn"
# First we test whether Xen headers and libraries are available.
diff --git a/hw/i386/xen/xen_platform.c b/hw/i386/xen/xen_platform.c
index e960103..7c4db35 100644
--- a/hw/i386/xen/xen_platform.c
+++ b/hw/i386/xen/xen_platform.c
@@ -37,8 +37,6 @@
#include "sysemu/block-backend.h"
#include "qemu/error-report.h"
#include "qemu/module.h"
-
-#include <xenguest.h>
#include "qom/object.h"
//#define DEBUG_PLATFORM