All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] xen: xenguest is not used so is not needed
@ 2020-07-27 14:00 Michael Tokarev
  2020-07-27 15:09 ` Anthony PERARD
  0 siblings, 1 reply; 6+ messages in thread
From: Michael Tokarev @ 2020-07-27 14:00 UTC (permalink / raw)
  To: qemu-devel, Stefano Stabellini, Anthony Perard; +Cc: Michael Tokarev

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>
---
 configure                  | 4 ++--
 hw/i386/xen/xen_platform.c | 2 --
 2 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/configure b/configure
index 2acc4d1465..09da2637a4 100755
--- a/configure
+++ b/configure
@@ -2646,7 +2646,7 @@ if test "$xen" != "no" ; then
     xen_ctrl_version="$(printf '%d%02d%02d' \
       $($pkg_config --modversion xencontrol | sed 's/\./ /g') )"
     xen=yes
-    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"
@@ -2655,7 +2655,7 @@ if test "$xen" != "no" ; then
     libs_softmmu="$($pkg_config --libs $xen_pc) $libs_softmmu"
   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 a1492fdecd..6e10451178 100644
--- a/hw/i386/xen/xen_platform.c
+++ b/hw/i386/xen/xen_platform.c
@@ -38,8 +38,6 @@
 #include "qemu/error-report.h"
 #include "qemu/module.h"
 
-#include <xenguest.h>
-
 //#define DEBUG_PLATFORM
 
 #ifdef DEBUG_PLATFORM
-- 
2.20.1



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH] xen: xenguest is not used so is not needed
  2020-07-27 14:00 [PATCH] xen: xenguest is not used so is not needed Michael Tokarev
@ 2020-07-27 15:09 ` Anthony PERARD
  2020-07-27 15:20   ` Michael Tokarev
                     ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Anthony PERARD @ 2020-07-27 15:09 UTC (permalink / raw)
  To: Michael Tokarev; +Cc: Stefano Stabellini, qemu-devel

On Mon, Jul 27, 2020 at 05:00:48PM +0300, Michael Tokarev wrote:
> 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.

I'm not sure what you mean by "no references to -lxenguest", do you mean
in the binary?

> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>

Otherwise, thanks for the cleanup!

Reviewed-by: Anthony PERARD <anthony.perard@citrix.com>

-- 
Anthony PERARD


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] xen: xenguest is not used so is not needed
  2020-07-27 15:09 ` Anthony PERARD
@ 2020-07-27 15:20   ` Michael Tokarev
       [not found]   ` <c90a625b-51d3-3718-1e83-1019f1cbd227@tls.msk.ru>
  2020-09-19 12:23   ` Philippe Mathieu-Daudé
  2 siblings, 0 replies; 6+ messages in thread
From: Michael Tokarev @ 2020-07-27 15:20 UTC (permalink / raw)
  To: Anthony PERARD; +Cc: Stefano Stabellini, qemu-devel

27.07.2020 18:09, Anthony PERARD wrote:
> On Mon, Jul 27, 2020 at 05:00:48PM +0300, Michael Tokarev wrote:
>> 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.
> 
> I'm not sure what you mean by "no references to -lxenguest", do you mean
> in the binary?

Yes, in the qemu-system-i386 binary, it can be linked without -lxenguest.

Just a caveat, -- I know almost nothing about xen, especially xen
internals and its (stable, unversioned and unstable, versioned) libs.
Qemu links fine without libxenguest in the mix with xen 4.11.4, - I
can't say for other versions.  I just thought if it does not include
<xenguest.h>, why it should link with -lxenguest? :)

/mjt


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] xen: xenguest is not used so is not needed
       [not found]   ` <c90a625b-51d3-3718-1e83-1019f1cbd227@tls.msk.ru>
@ 2020-09-19 10:52     ` Michael Tokarev
  0 siblings, 0 replies; 6+ messages in thread
From: Michael Tokarev @ 2020-09-19 10:52 UTC (permalink / raw)
  To: Anthony PERARD; +Cc: Stefano Stabellini, qemu-devel

[ https://patchwork.kernel.org/patch/11686919/ ]

Ping?  This patch got lost somewhere. Should I try to apply it via trivial tree?

I've more cleanups pending for this area.  Just in case, I verified this patch
it wih xen 4.4 and with current xen, and with current qemu, - no  part of qemu
uses xenguest interface.


Thanks,

/mjt

27.07.2020 18:20, Michael Tokarev wrote:
> 27.07.2020 18:09, Anthony PERARD wrote:
>> On Mon, Jul 27, 2020 at 05:00:48PM +0300, Michael Tokarev wrote:
>>> 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.
>>
>> I'm not sure what you mean by "no references to -lxenguest", do you mean
>> in the binary?
> 
> Yes, in the qemu-system-i386 binary, it can be linked without -lxenguest.
> 
> Just a caveat, -- I know almost nothing about xen, especially xen
> internals and its (stable, unversioned and unstable, versioned) libs.
> Qemu links fine without libxenguest in the mix with xen 4.11.4, - I
> can't say for other versions.  I just thought if it does not include
> <xenguest.h>, why it should link with -lxenguest? :)


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] xen: xenguest is not used so is not needed
  2020-07-27 15:09 ` Anthony PERARD
  2020-07-27 15:20   ` Michael Tokarev
       [not found]   ` <c90a625b-51d3-3718-1e83-1019f1cbd227@tls.msk.ru>
@ 2020-09-19 12:23   ` Philippe Mathieu-Daudé
  2020-09-22  0:10     ` Stefano Stabellini
  2 siblings, 1 reply; 6+ messages in thread
From: Philippe Mathieu-Daudé @ 2020-09-19 12:23 UTC (permalink / raw)
  To: Anthony PERARD, Michael Tokarev
  Cc: QEMU Trivial, Stefano Stabellini, qemu-devel

Cc'ing qemu-trivial@

On 7/27/20 5:09 PM, Anthony PERARD wrote:
> On Mon, Jul 27, 2020 at 05:00:48PM +0300, Michael Tokarev wrote:
>> 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.
> 
> I'm not sure what you mean by "no references to -lxenguest", do you mean
> in the binary?
> 
>> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
> 
> Otherwise, thanks for the cleanup!
> 
> Reviewed-by: Anthony PERARD <anthony.perard@citrix.com>
> 


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] xen: xenguest is not used so is not needed
  2020-09-19 12:23   ` Philippe Mathieu-Daudé
@ 2020-09-22  0:10     ` Stefano Stabellini
  0 siblings, 0 replies; 6+ messages in thread
From: Stefano Stabellini @ 2020-09-22  0:10 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé
  Cc: Stefano Stabellini, paul, QEMU Trivial, Michael Tokarev,
	qemu-devel, Anthony PERARD

[-- Attachment #1: Type: text/plain, Size: 646 bytes --]

Adding Paul


On Sat, 19 Sep 2020, Philippe Mathieu-Daudé wrote:
> Cc'ing qemu-trivial@
> 
> On 7/27/20 5:09 PM, Anthony PERARD wrote:
> > On Mon, Jul 27, 2020 at 05:00:48PM +0300, Michael Tokarev wrote:
> >> 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.
> > 
> > I'm not sure what you mean by "no references to -lxenguest", do you mean
> > in the binary?
> > 
> >> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
> > 
> > Otherwise, thanks for the cleanup!
> > 
> > Reviewed-by: Anthony PERARD <anthony.perard@citrix.com>
> > 
> 

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2020-09-22  0:11 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-27 14:00 [PATCH] xen: xenguest is not used so is not needed Michael Tokarev
2020-07-27 15:09 ` Anthony PERARD
2020-07-27 15:20   ` Michael Tokarev
     [not found]   ` <c90a625b-51d3-3718-1e83-1019f1cbd227@tls.msk.ru>
2020-09-19 10:52     ` Michael Tokarev
2020-09-19 12:23   ` Philippe Mathieu-Daudé
2020-09-22  0:10     ` Stefano Stabellini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.