All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Chen, Tiejun" <tiejun.chen@intel.com>
To: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Cc: peter.maydell@linaro.org,
	"xen-devel@lists.xensource.com Devel"
	<xen-devel@lists.xensource.com>,
	QEMU Developers <qemu-devel@nongnu.org>
Subject: Re: [Qemu-devel] [PULL 0/19] xen-2015-09-08-tag
Date: Thu, 10 Sep 2015 09:12:38 +0800	[thread overview]
Message-ID: <55F0D906.4070606@intel.com> (raw)
In-Reply-To: <alpine.DEB.2.02.1509091248460.2672@kaball.uk.xensource.com>

On 9/9/2015 9:06 PM, Stefano Stabellini wrote:
> On Tue, 8 Sep 2015, Peter Maydell wrote:
>> On 8 September 2015 at 18:21, Stefano Stabellini
>> <stefano.stabellini@eu.citrix.com> wrote:
>> > The following changes since commit 8611280505119e296757a60711a881341603fa5a:
>> >
>> >   target-microblaze: Use setcond for pcmp* (2015-09-08 08:49:33 +0200)
>> >
>> > are available in the git repository at:
>> >
>> >   git://xenbits.xen.org/people/sstabellini/qemu-dm.git tags/xen-2015-09-08-tag
>> >
>> > for you to fetch changes up to ba2250ad148997b1352aba976aac66b55410e7e4:
>> >
>> >   xen/pt: Use XEN_PT_LOG properly to guard against compiler warnings. (2015-09-08 15:21:56 +0000)
>> >
>> > ----------------------------------------------------------------
>> > Xen branch xen-2015-09-08
>> >
>> > ----------------------------------------------------------------
>>
>> Hi. I'm afraid this fails to build on OSX (and probably Windows too,
>> though that build hasn't run yet):
>>
>>   CC    i386-softmmu/hw/i386/pci-assign-load-rom.o
>> /Users/pm215/src/qemu/hw/i386/pci-assign-load-rom.c:6:10: fatal error:
>>       'sys/io.h' file not found
>> #include <sys/io.h>
>>          ^
>>   CC    alpha-softmmu/hw/alpha/pci.o
>> 1 error generated.
>
> Tiejun,
>
> this is caused by 33d33242b7d802e6c994f3d56ecba96a66465dc3,
> "hw/pci-assign: split pci-assign.c". Could you please double-check
> non-Linux builds?

Its interesting.

As you see this short log, "hw/pci-assign: split pci-assign.c", so this 
means I just extract something from the original 
hw/i386/kvm/pci-assign.c, and here so I just keep those original head 
files residing hw/i386/kvm/pci-assign.c, and I didn't introduce anything 
new.

So its very probably that you still can't compile successfully even 
without my commit on OSX/Windows, right? I think Peter may be right,

"Will passthrough even work on Windows and OSX hosts?
Consider whether we should be building this code on those
hosts at all..."

I prefer this isn't what we did previously.

>
>
> I suspect that the fix would be quite small, but I don't have an OSX or
> a Windows build environment to try it.

I haven't a this build environment as well. But I think right now you 
can remove "#include <sys/io.h>" to fix this simply since looks this is 
redundant actually.

     hw/i386/pci-assign: remove one head file

     This is redundant actually but really break OS/Windows build.

     Signed-off-by: Tiejun Chen <tiejun.chen@intel.com>

diff --git a/hw/i386/pci-assign-load-rom.c b/hw/i386/pci-assign-load-rom.c
index bad53b7..1f0d4ef 100644
--- a/hw/i386/pci-assign-load-rom.c
+++ b/hw/i386/pci-assign-load-rom.c
@@ -3,7 +3,6 @@
   */
  #include <stdio.h>
  #include <unistd.h>
-#include <sys/io.h>
  #include <sys/mman.h>
  #include <sys/types.h>
  #include <sys/stat.h>


At least I can build this under Linux,

./configure --target-list=x86_64-softmmu && make

Thanks
Tiejun

>
> Speak about build environments, Peter, would you care to share your
> scripts and setup so that I can run similar tests in the future on my
> own?  I have no OSX machines so I tried to do a Windows
> cross-compile, following http://wiki.qemu.org/Hosts/W32 on Debian 7, but
> I failed very early with an "ERROR: zlib check failed".
>

WARNING: multiple messages have this Message-ID (diff)
From: "Chen, Tiejun" <tiejun.chen@intel.com>
To: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Cc: peter.maydell@linaro.org,
	"xen-devel@lists.xensource.com Devel"
	<xen-devel@lists.xensource.com>,
	QEMU Developers <qemu-devel@nongnu.org>
Subject: Re: [PULL 0/19] xen-2015-09-08-tag
Date: Thu, 10 Sep 2015 09:12:38 +0800	[thread overview]
Message-ID: <55F0D906.4070606@intel.com> (raw)
In-Reply-To: <alpine.DEB.2.02.1509091248460.2672@kaball.uk.xensource.com>

On 9/9/2015 9:06 PM, Stefano Stabellini wrote:
> On Tue, 8 Sep 2015, Peter Maydell wrote:
>> On 8 September 2015 at 18:21, Stefano Stabellini
>> <stefano.stabellini@eu.citrix.com> wrote:
>> > The following changes since commit 8611280505119e296757a60711a881341603fa5a:
>> >
>> >   target-microblaze: Use setcond for pcmp* (2015-09-08 08:49:33 +0200)
>> >
>> > are available in the git repository at:
>> >
>> >   git://xenbits.xen.org/people/sstabellini/qemu-dm.git tags/xen-2015-09-08-tag
>> >
>> > for you to fetch changes up to ba2250ad148997b1352aba976aac66b55410e7e4:
>> >
>> >   xen/pt: Use XEN_PT_LOG properly to guard against compiler warnings. (2015-09-08 15:21:56 +0000)
>> >
>> > ----------------------------------------------------------------
>> > Xen branch xen-2015-09-08
>> >
>> > ----------------------------------------------------------------
>>
>> Hi. I'm afraid this fails to build on OSX (and probably Windows too,
>> though that build hasn't run yet):
>>
>>   CC    i386-softmmu/hw/i386/pci-assign-load-rom.o
>> /Users/pm215/src/qemu/hw/i386/pci-assign-load-rom.c:6:10: fatal error:
>>       'sys/io.h' file not found
>> #include <sys/io.h>
>>          ^
>>   CC    alpha-softmmu/hw/alpha/pci.o
>> 1 error generated.
>
> Tiejun,
>
> this is caused by 33d33242b7d802e6c994f3d56ecba96a66465dc3,
> "hw/pci-assign: split pci-assign.c". Could you please double-check
> non-Linux builds?

Its interesting.

As you see this short log, "hw/pci-assign: split pci-assign.c", so this 
means I just extract something from the original 
hw/i386/kvm/pci-assign.c, and here so I just keep those original head 
files residing hw/i386/kvm/pci-assign.c, and I didn't introduce anything 
new.

So its very probably that you still can't compile successfully even 
without my commit on OSX/Windows, right? I think Peter may be right,

"Will passthrough even work on Windows and OSX hosts?
Consider whether we should be building this code on those
hosts at all..."

I prefer this isn't what we did previously.

>
>
> I suspect that the fix would be quite small, but I don't have an OSX or
> a Windows build environment to try it.

I haven't a this build environment as well. But I think right now you 
can remove "#include <sys/io.h>" to fix this simply since looks this is 
redundant actually.

     hw/i386/pci-assign: remove one head file

     This is redundant actually but really break OS/Windows build.

     Signed-off-by: Tiejun Chen <tiejun.chen@intel.com>

diff --git a/hw/i386/pci-assign-load-rom.c b/hw/i386/pci-assign-load-rom.c
index bad53b7..1f0d4ef 100644
--- a/hw/i386/pci-assign-load-rom.c
+++ b/hw/i386/pci-assign-load-rom.c
@@ -3,7 +3,6 @@
   */
  #include <stdio.h>
  #include <unistd.h>
-#include <sys/io.h>
  #include <sys/mman.h>
  #include <sys/types.h>
  #include <sys/stat.h>


At least I can build this under Linux,

./configure --target-list=x86_64-softmmu && make

Thanks
Tiejun

>
> Speak about build environments, Peter, would you care to share your
> scripts and setup so that I can run similar tests in the future on my
> own?  I have no OSX machines so I tried to do a Windows
> cross-compile, following http://wiki.qemu.org/Hosts/W32 on Debian 7, but
> I failed very early with an "ERROR: zlib check failed".
>

  parent reply	other threads:[~2015-09-10  1:12 UTC|newest]

Thread overview: 102+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-08 17:21 [Qemu-devel] [PULL 0/19] xen-2015-09-08-tag Stefano Stabellini
2015-09-08 17:21 ` Stefano Stabellini
2015-09-08 17:21 ` [Qemu-devel] [PULL 01/19] xen-hvm: Add trace to ioreq Stefano Stabellini
2015-09-08 17:21   ` Stefano Stabellini
2015-09-08 17:21 ` [Qemu-devel] [PULL 02/19] i440fx: make types configurable at run-time Stefano Stabellini
2015-09-08 17:21   ` Stefano Stabellini
2015-09-08 17:21 ` [Qemu-devel] [PULL 03/19] pc_init1: pass parameters just with types Stefano Stabellini
2015-09-08 17:21   ` Stefano Stabellini
2015-09-08 17:21 ` [Qemu-devel] [PULL 04/19] piix: create host bridge to passthrough Stefano Stabellini
2015-09-08 17:21   ` Stefano Stabellini
2015-09-08 17:21 ` [Qemu-devel] [PULL 05/19] hw/pci-assign: split pci-assign.c Stefano Stabellini
2015-09-08 17:21   ` Stefano Stabellini
2015-09-08 17:21 ` [Qemu-devel] [PULL 06/19] xen, gfx passthrough: basic graphics passthrough support Stefano Stabellini
2015-09-08 17:21   ` Stefano Stabellini
2015-09-08 17:21 ` [Qemu-devel] [PULL 07/19] xen, gfx passthrough: retrieve VGA BIOS to work Stefano Stabellini
2015-09-08 17:21   ` Stefano Stabellini
2015-09-08 17:21 ` [Qemu-devel] [PULL 08/19] igd gfx passthrough: create a isa bridge Stefano Stabellini
2015-09-08 17:21   ` Stefano Stabellini
2015-09-08 17:21 ` [Qemu-devel] [PULL 09/19] xen, gfx passthrough: register " Stefano Stabellini
2015-09-08 17:21   ` Stefano Stabellini
2015-09-08 17:21 ` [Qemu-devel] [PULL 10/19] xen, gfx passthrough: register host bridge specific to passthrough Stefano Stabellini
2015-09-08 17:21   ` Stefano Stabellini
2015-09-08 17:21 ` [Qemu-devel] [PULL 11/19] xen, gfx passthrough: add opregion mapping Stefano Stabellini
2015-09-08 17:21   ` Stefano Stabellini
2015-09-08 17:21 ` [Qemu-devel] [PULL 12/19] xen-hvm: When using xc_domain_add_to_physmap also include errno when reporting Stefano Stabellini
2015-09-08 17:21   ` Stefano Stabellini
2015-09-08 17:21 ` [Qemu-devel] [PULL 13/19] xen/HVM: atomically access pointers in bufioreq handling Stefano Stabellini
2015-09-08 17:21   ` Stefano Stabellini
2015-09-08 17:21 ` [Qemu-devel] [PULL 14/19] xen/pt: Update comments with proper function name Stefano Stabellini
2015-09-08 17:21   ` Stefano Stabellini
2015-09-08 17:21 ` [Qemu-devel] [PULL 15/19] xen/pt: Make xen_pt_msi_set_enable static Stefano Stabellini
2015-09-08 17:21   ` Stefano Stabellini
2015-09-08 17:21 ` [Qemu-devel] [PULL 16/19] xen/pt: xen_host_pci_config_read returns -errno, not -1 on failure Stefano Stabellini
2015-09-08 17:21   ` Stefano Stabellini
2015-09-08 17:21 ` [Qemu-devel] [PULL 17/19] xen: use errno instead of rc for xc_domain_add_to_physmap Stefano Stabellini
2015-09-08 17:21   ` Stefano Stabellini
2015-09-08 17:21 ` [Qemu-devel] [PULL 18/19] xen/pt/msi: Add the register value when printing logging and error messages Stefano Stabellini
2015-09-08 17:21   ` Stefano Stabellini
2015-09-08 17:21 ` [Qemu-devel] [PULL 19/19] xen/pt: Use XEN_PT_LOG properly to guard against compiler warnings Stefano Stabellini
2015-09-08 17:21   ` Stefano Stabellini
2015-09-08 19:12 ` [Qemu-devel] [PULL 0/19] xen-2015-09-08-tag Peter Maydell
2015-09-08 19:12   ` Peter Maydell
2015-09-09 13:06   ` [Qemu-devel] " Stefano Stabellini
2015-09-09 13:06     ` Stefano Stabellini
2015-09-09 16:10     ` [Qemu-devel] " Stefano Stabellini
2015-09-09 16:10       ` Stefano Stabellini
2015-09-09 17:33       ` [Qemu-devel] " Peter Maydell
2015-09-09 17:33         ` Peter Maydell
2015-09-10  1:21       ` [Qemu-devel] " Chen, Tiejun
2015-09-10  1:21         ` Chen, Tiejun
2015-09-10  8:57         ` [Qemu-devel] " Peter Maydell
2015-09-10  8:57           ` Peter Maydell
2015-09-10  9:32           ` [Qemu-devel] " Chen, Tiejun
2015-09-10  9:32             ` Chen, Tiejun
2015-09-10  9:42             ` [Qemu-devel] " Stefano Stabellini
2015-09-10  9:42               ` Stefano Stabellini
2015-09-10 10:29               ` [Qemu-devel] " Stefano Stabellini
2015-09-10 10:29                 ` Stefano Stabellini
2015-09-10 10:46                 ` [Qemu-devel] " Michael S. Tsirkin
2015-09-10 10:46                   ` Michael S. Tsirkin
2015-09-10 11:26                   ` [Qemu-devel] " Stefano Stabellini
2015-09-10 11:26                     ` Stefano Stabellini
2015-09-10 12:00                     ` [Qemu-devel] " Michael S. Tsirkin
2015-09-10 12:00                       ` Michael S. Tsirkin
2015-09-10 12:00                       ` [Qemu-devel] " Stefano Stabellini
2015-09-10 12:00                         ` Stefano Stabellini
2015-09-10 12:13                         ` [Qemu-devel] " Michael S. Tsirkin
2015-09-10 12:13                           ` Michael S. Tsirkin
2015-09-11  0:40                           ` [Qemu-devel] " Chen, Tiejun
2015-09-11  0:40                             ` Chen, Tiejun
2015-09-14  9:57                 ` [Qemu-devel] " Paolo Bonzini
2015-09-14  9:57                   ` Paolo Bonzini
2015-09-15  9:55                   ` [Qemu-devel] " Stefano Stabellini
2015-09-15  9:55                     ` Stefano Stabellini
2015-09-15 11:00                     ` [Qemu-devel] " Paolo Bonzini
2015-09-15 11:00                       ` Paolo Bonzini
2015-09-16  1:11                       ` [Qemu-devel] " Chen, Tiejun
2015-09-16  1:11                         ` Chen, Tiejun
2015-09-17 11:47                         ` [Qemu-devel] " Stefano Stabellini
2015-09-17 11:47                           ` Stefano Stabellini
2015-09-09 17:21     ` [Qemu-devel] " Peter Maydell
2015-09-09 17:21       ` Peter Maydell
2015-09-10  1:12     ` Chen, Tiejun [this message]
2015-09-10  1:12       ` Chen, Tiejun
2015-09-10  8:59       ` [Qemu-devel] " Peter Maydell
2015-09-10  8:59         ` Peter Maydell
2015-09-10  9:20         ` [Qemu-devel] " Chen, Tiejun
2015-09-10  9:20           ` Chen, Tiejun
2015-09-10  9:59           ` [Qemu-devel] " Stefano Stabellini
2015-09-10  9:59             ` Stefano Stabellini
2015-09-21  1:16 ` [Qemu-devel] [Xen-devel] " Chen, Tiejun
2015-09-21  1:16   ` Chen, Tiejun
2015-09-21 16:03   ` [Qemu-devel] [Xen-devel] " Stefano Stabellini
2015-09-21 16:03     ` Stefano Stabellini
2015-09-28  2:01     ` [Qemu-devel] " Chen, Tiejun
2015-09-28  2:01       ` Chen, Tiejun
2015-09-28 10:01       ` [Qemu-devel] " Stefano Stabellini
2015-09-28 10:01         ` [Qemu-devel] " Stefano Stabellini
2015-09-28 17:20         ` [Qemu-devel] [Xen-devel] " Pasi Kärkkäinen
2015-09-28 17:20           ` [Qemu-devel] " Pasi Kärkkäinen
2015-09-29  9:53           ` [Qemu-devel] [Xen-devel] " Stefano Stabellini
2015-09-29  9:53             ` [Qemu-devel] " Stefano Stabellini

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=55F0D906.4070606@intel.com \
    --to=tiejun.chen@intel.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    --cc=stefano.stabellini@eu.citrix.com \
    --cc=xen-devel@lists.xensource.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.