All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] buildbot failure in qemu on block_mingw32
@ 2012-11-20  0:04 qemu
  2012-11-20 13:36 ` Stefan Hajnoczi
  0 siblings, 1 reply; 36+ messages in thread
From: qemu @ 2012-11-20  0:04 UTC (permalink / raw)
  To: agraf, gollub, lcapitulino, qemu-devel

The Buildbot has detected a new failure on builder block_mingw32 while building qemu.
Full details are available at:
 http://buildbot.b1-systems.de/qemu/builders/block_mingw32/builds/390

Buildbot URL: http://buildbot.b1-systems.de/qemu/

Buildslave for this Build: kraxel_rhel61

Build Reason: The Nightly scheduler named 'nightly_block' triggered this build
Build Source Stamp: [branch block] HEAD
Blamelist: 

BUILD FAILED: failed compile

sincerely,
 -The Buildbot


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

* Re: [Qemu-devel] buildbot failure in qemu on block_mingw32
  2012-11-20  0:04 [Qemu-devel] buildbot failure in qemu on block_mingw32 qemu
@ 2012-11-20 13:36 ` Stefan Hajnoczi
  2012-11-20 13:49   ` Anthony Liguori
  0 siblings, 1 reply; 36+ messages in thread
From: Stefan Hajnoczi @ 2012-11-20 13:36 UTC (permalink / raw)
  To: qemu; +Cc: qemu-devel, gollub, agraf, lcapitulino

On Tue, Nov 20, 2012 at 01:04:49AM +0100, qemu@buildbot.b1-systems.de wrote:
> The Buildbot has detected a new failure on builder block_mingw32 while building qemu.
> Full details are available at:
>  http://buildbot.b1-systems.de/qemu/builders/block_mingw32/builds/390

Known issue: O_NONBLOCK on mingw32.

Stefan

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

* Re: [Qemu-devel] buildbot failure in qemu on block_mingw32
  2012-11-20 13:36 ` Stefan Hajnoczi
@ 2012-11-20 13:49   ` Anthony Liguori
  0 siblings, 0 replies; 36+ messages in thread
From: Anthony Liguori @ 2012-11-20 13:49 UTC (permalink / raw)
  To: Stefan Hajnoczi; +Cc: agraf, gollub, qemu, qemu-devel, Luiz Capitulino

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

On Nov 20, 2012 7:36 AM, "Stefan Hajnoczi" <stefanha@gmail.com> wrote:
>
> On Tue, Nov 20, 2012 at 01:04:49AM +0100, qemu@buildbot.b1-systems.dewrote:
> > The Buildbot has detected a new failure on builder block_mingw32 while
building qemu.
> > Full details are available at:
> >  http://buildbot.b1-systems.de/qemu/builders/block_mingw32/builds/390
>
> Known issue: O_NONBLOCK on mingw32.

Fixed in master, the block tree is just missing the commit ATM.

Regards,

Anthony Liguori

>
> Stefan
>

[-- Attachment #2: Type: text/html, Size: 817 bytes --]

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

* [Qemu-devel] buildbot failure in qemu on block_mingw32
@ 2013-01-16  0:06 qemu
  0 siblings, 0 replies; 36+ messages in thread
From: qemu @ 2013-01-16  0:06 UTC (permalink / raw)
  To: agraf, gollub, lcapitulino, qemu-devel

The Buildbot has detected a new failure on builder block_mingw32 while building qemu.
Full details are available at:
 http://buildbot.b1-systems.de/qemu/builders/block_mingw32/builds/447

Buildbot URL: http://buildbot.b1-systems.de/qemu/

Buildslave for this Build: kraxel_rhel61

Build Reason: The Nightly scheduler named 'nightly_block' triggered this build
Build Source Stamp: [branch block] HEAD
Blamelist: 

BUILD FAILED: failed compile

sincerely,
 -The Buildbot


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

* Re: [Qemu-devel] buildbot failure in qemu on block_mingw32
  2013-01-10 12:44     ` Stefan Hajnoczi
@ 2013-01-10 13:08       ` Gerd Hoffmann
  0 siblings, 0 replies; 36+ messages in thread
From: Gerd Hoffmann @ 2013-01-10 13:08 UTC (permalink / raw)
  To: Stefan Hajnoczi; +Cc: Stefan Weil, Daniel Gollub, qemu-devel, Stefan Weil

  Hi,

>> I don't get this error in line 2097 with my native and cross builds,
>> nor do I get the warnings. Which version of MinGW is used on the buildbot?
>>
>> Anyway, it will be fixed with the pending patch
>> http://patchwork.ozlabs.org/patch/210240/
> 
> I've added Gerd on CC if he has time to check the buildbot.  But since
> this will be fixed anyway it probably doesn't matter.

http://buildbot.b1-systems.de/qemu/buildslaves/kraxel_rhel61
has package version lists.

And, yes, mingw64 builds it fine, both 32 and 64 bit versions.

While talking about the buildbots (adding Daniel to Cc):

kraxel_fedora16 has mingw64 installed and can so both 32bit and 64bit
mingw builds.  The cross prefixes are "i686-w64-mingw32-" and
"x86_64-w64-mingw32-".

Both kraxel_fedora16 and kraxel_rhel61 have clang installed, which can
be configured like this:

clang.addStep(Configure(command=["./configure",
                                 "--cc=clang",
                                 "--host-cc=clang",
                                 "--disable-werror",
                                 "--disable-debug-info"],
                        logfiles={"config.log": "config.log"}))

Finally, a custom message formater which adds the log tail directly to
the fail messages would be cool, so you don't have to dig out the web
browser to figure what the error is.  /me runs this one:

def kraxelMessageFormatter(mode, name, build, results, master_status):
    result = Results[results]
    defmsg = mail.defaultMessage(mode, name, build, results, master_status);
    text = list();
    text.append(defmsg['body']);

    # get log for last step
    logs = build.getLogs()
    for log in reversed(logs):
        if log.getName() == 'stdio':
            break
    content = log.getText().splitlines() # Note: can be VERY LARGE
    url = "%s/steps/%s/logs/%s" % (master_status.getURLForThing(build),
                                   log.getStep().getName(),
                                   log.getName())

    # append log info to standard message
    text.append("========== log tail ==========")
    for line in content[-32:]:
        text.append(unicode(line,'utf8'))
    text.append("")
    text.append("========== full log ==========")
    text.append(url);

    return { 'body' : "\n".join(text), 'type' : 'plain' }

... hook up this way ...

mn = mail.MailNotifier($args,
                       messageFormatter=kraxelMessageFormatter);

cheers,
  Gerd

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

* Re: [Qemu-devel] buildbot failure in qemu on block_mingw32
  2013-01-09 17:16   ` Stefan Weil
@ 2013-01-10 12:44     ` Stefan Hajnoczi
  2013-01-10 13:08       ` Gerd Hoffmann
  0 siblings, 1 reply; 36+ messages in thread
From: Stefan Hajnoczi @ 2013-01-10 12:44 UTC (permalink / raw)
  To: Stefan Weil; +Cc: Stefan Weil, qemu-devel, Gerd Hoffmann

On Wed, Jan 09, 2013 at 06:16:01PM +0100, Stefan Weil wrote:
> > On Tue, Jan 08, 2013 at 01:06:19AM +0100, qemu@buildbot.b1-systems.de
> > wrote:
> >> The Buildbot has detected a new failure on builder block_mingw32 while
> >> building qemu.
> >> Full details are available at:
> >>  http://buildbot.b1-systems.de/qemu/builders/block_mingw32/builds/439
> >>
> >> Buildbot URL: http://buildbot.b1-systems.de/qemu/
> >>
> >> Buildslave for this Build: kraxel_rhel61
> >
> > Here is the error:
> >
> > /usr/i686-pc-mingw32/sys-root/mingw/include/stdlib.h:371: note: previous
> > declaration of 'atexit' was here
> > /home/buildbot/slave-public/block_mingw32/build/savevm.c: In function
> > 'do_savevm':
> > /home/buildbot/slave-public/block_mingw32/build/savevm.c:2097: error:
> > storage size of 'tb' isn't known
> > /home/buildbot/slave-public/block_mingw32/build/savevm.c:2133: warning:
> > implicit declaration of function '_ftime'
> > /home/buildbot/slave-public/block_mingw32/build/savevm.c:2133: warning:
> > nested extern declaration of '_ftime'
> > /home/buildbot/slave-public/block_mingw32/build/savevm.c:2097: warning:
> > unused variable 'tb'
> >
> > Stefan
> 
> 
> I don't get this error in line 2097 with my native and cross builds,
> nor do I get the warnings. Which version of MinGW is used on the buildbot?
> 
> Anyway, it will be fixed with the pending patch
> http://patchwork.ozlabs.org/patch/210240/

I've added Gerd on CC if he has time to check the buildbot.  But since
this will be fixed anyway it probably doesn't matter.

Stefan

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

* Re: [Qemu-devel] buildbot failure in qemu on block_mingw32
  2013-01-09  8:53 ` Stefan Hajnoczi
@ 2013-01-09 17:16   ` Stefan Weil
  2013-01-10 12:44     ` Stefan Hajnoczi
  0 siblings, 1 reply; 36+ messages in thread
From: Stefan Weil @ 2013-01-09 17:16 UTC (permalink / raw)
  To: Stefan Hajnoczi; +Cc: Stefan Weil, qemu-devel

> On Tue, Jan 08, 2013 at 01:06:19AM +0100, qemu@buildbot.b1-systems.de
> wrote:
>> The Buildbot has detected a new failure on builder block_mingw32 while
>> building qemu.
>> Full details are available at:
>>  http://buildbot.b1-systems.de/qemu/builders/block_mingw32/builds/439
>>
>> Buildbot URL: http://buildbot.b1-systems.de/qemu/
>>
>> Buildslave for this Build: kraxel_rhel61
>
> Here is the error:
>
> /usr/i686-pc-mingw32/sys-root/mingw/include/stdlib.h:371: note: previous
> declaration of 'atexit' was here
> /home/buildbot/slave-public/block_mingw32/build/savevm.c: In function
> 'do_savevm':
> /home/buildbot/slave-public/block_mingw32/build/savevm.c:2097: error:
> storage size of 'tb' isn't known
> /home/buildbot/slave-public/block_mingw32/build/savevm.c:2133: warning:
> implicit declaration of function '_ftime'
> /home/buildbot/slave-public/block_mingw32/build/savevm.c:2133: warning:
> nested extern declaration of '_ftime'
> /home/buildbot/slave-public/block_mingw32/build/savevm.c:2097: warning:
> unused variable 'tb'
>
> Stefan


I don't get this error in line 2097 with my native and cross builds,
nor do I get the warnings. Which version of MinGW is used on the buildbot?

Anyway, it will be fixed with the pending patch
http://patchwork.ozlabs.org/patch/210240/

Stefan

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

* Re: [Qemu-devel] buildbot failure in qemu on block_mingw32
  2013-01-08  0:06 qemu
@ 2013-01-09  8:53 ` Stefan Hajnoczi
  2013-01-09 17:16   ` Stefan Weil
  0 siblings, 1 reply; 36+ messages in thread
From: Stefan Hajnoczi @ 2013-01-09  8:53 UTC (permalink / raw)
  To: qemu-devel; +Cc: Stefan Weil

On Tue, Jan 08, 2013 at 01:06:19AM +0100, qemu@buildbot.b1-systems.de wrote:
> The Buildbot has detected a new failure on builder block_mingw32 while building qemu.
> Full details are available at:
>  http://buildbot.b1-systems.de/qemu/builders/block_mingw32/builds/439
> 
> Buildbot URL: http://buildbot.b1-systems.de/qemu/
> 
> Buildslave for this Build: kraxel_rhel61

Here is the error:

/usr/i686-pc-mingw32/sys-root/mingw/include/stdlib.h:371: note: previous declaration of 'atexit' was here
/home/buildbot/slave-public/block_mingw32/build/savevm.c: In function 'do_savevm':
/home/buildbot/slave-public/block_mingw32/build/savevm.c:2097: error: storage size of 'tb' isn't known
/home/buildbot/slave-public/block_mingw32/build/savevm.c:2133: warning: implicit declaration of function '_ftime'
/home/buildbot/slave-public/block_mingw32/build/savevm.c:2133: warning: nested extern declaration of '_ftime'
/home/buildbot/slave-public/block_mingw32/build/savevm.c:2097: warning: unused variable 'tb'

Stefan

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

* [Qemu-devel] buildbot failure in qemu on block_mingw32
@ 2013-01-08  0:06 qemu
  2013-01-09  8:53 ` Stefan Hajnoczi
  0 siblings, 1 reply; 36+ messages in thread
From: qemu @ 2013-01-08  0:06 UTC (permalink / raw)
  To: agraf, gollub, lcapitulino, qemu-devel

The Buildbot has detected a new failure on builder block_mingw32 while building qemu.
Full details are available at:
 http://buildbot.b1-systems.de/qemu/builders/block_mingw32/builds/439

Buildbot URL: http://buildbot.b1-systems.de/qemu/

Buildslave for this Build: kraxel_rhel61

Build Reason: The Nightly scheduler named 'nightly_block' triggered this build
Build Source Stamp: [branch block] HEAD
Blamelist: 

BUILD FAILED: failed compile

sincerely,
 -The Buildbot


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

* [Qemu-devel] buildbot failure in qemu on block_mingw32
@ 2012-12-17  0:23 qemu
  0 siblings, 0 replies; 36+ messages in thread
From: qemu @ 2012-12-17  0:23 UTC (permalink / raw)
  To: agraf, gollub, lcapitulino, qemu-devel

The Buildbot has detected a new failure on builder block_mingw32 while building qemu.
Full details are available at:
 http://buildbot.b1-systems.de/qemu/builders/block_mingw32/builds/417

Buildbot URL: http://buildbot.b1-systems.de/qemu/

Buildslave for this Build: kraxel_rhel61

Build Reason: The Nightly scheduler named 'nightly_block' triggered this build
Build Source Stamp: [branch block] HEAD
Blamelist: 

BUILD FAILED: failed git

sincerely,
 -The Buildbot


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

* Re: [Qemu-devel] buildbot failure in qemu on block_mingw32
  2012-10-24  9:16 ` Kevin Wolf
@ 2012-10-24 11:39   ` Luiz Capitulino
  0 siblings, 0 replies; 36+ messages in thread
From: Luiz Capitulino @ 2012-10-24 11:39 UTC (permalink / raw)
  To: Kevin Wolf; +Cc: gollub, qemu, agraf, qemu-devel

On Wed, 24 Oct 2012 11:16:38 +0200
Kevin Wolf <kwolf@redhat.com> wrote:

> Am 24.10.2012 03:05, schrieb qemu@buildbot.b1-systems.de:
> > The Buildbot has detected a new failure on builder block_mingw32 while building qemu.
> > Full details are available at:
> >  http://buildbot.b1-systems.de/qemu/builders/block_mingw32/builds/363
> > 
> > Buildbot URL: http://buildbot.b1-systems.de/qemu/
> > 
> > Buildslave for this Build: kraxel_rhel61
> > 
> > Build Reason: The Nightly scheduler named 'nightly_block' triggered this build
> > Build Source Stamp: [branch block] HEAD
> > Blamelist: 
> > 
> > BUILD FAILED: failed compile
> > 
> > sincerely,
> >  -The Buildbot
> 
> Luiz, this is yours:

Thanks for letting me know! I'll setup mingw here to reproduce this.

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

* Re: [Qemu-devel] buildbot failure in qemu on block_mingw32
  2012-10-24  1:05 qemu
@ 2012-10-24  9:16 ` Kevin Wolf
  2012-10-24 11:39   ` Luiz Capitulino
  0 siblings, 1 reply; 36+ messages in thread
From: Kevin Wolf @ 2012-10-24  9:16 UTC (permalink / raw)
  To: qemu; +Cc: qemu-devel, gollub, agraf, lcapitulino

Am 24.10.2012 03:05, schrieb qemu@buildbot.b1-systems.de:
> The Buildbot has detected a new failure on builder block_mingw32 while building qemu.
> Full details are available at:
>  http://buildbot.b1-systems.de/qemu/builders/block_mingw32/builds/363
> 
> Buildbot URL: http://buildbot.b1-systems.de/qemu/
> 
> Buildslave for this Build: kraxel_rhel61
> 
> Build Reason: The Nightly scheduler named 'nightly_block' triggered this build
> Build Source Stamp: [branch block] HEAD
> Blamelist: 
> 
> BUILD FAILED: failed compile
> 
> sincerely,
>  -The Buildbot

Luiz, this is yours:

  CC    i386-softmmu/exec.o
In file included from
/usr/i686-pc-mingw32/sys-root/mingw/include/glib-2.0/glib/gthread.h:36,
                 from
/usr/i686-pc-mingw32/sys-root/mingw/include/glib-2.0/glib/gasyncqueue.h:34,
                 from
/usr/i686-pc-mingw32/sys-root/mingw/include/glib-2.0/glib.h:34,
                 from
/home/buildbot/slave-public/block_mingw32/build/qemu-common.h:41,
                 from
/home/buildbot/slave-public/block_mingw32/build/exec.c:27:
/usr/i686-pc-mingw32/sys-root/mingw/include/glib-2.0/glib/gutils.h:290:
warning: redundant redeclaration of 'atexit'
/usr/i686-pc-mingw32/sys-root/mingw/include/stdlib.h:371: note: previous
declaration of 'atexit' was here
/home/buildbot/slave-public/block_mingw32/build/exec.c: In function
'qemu_ram_alloc_from_ptr':
/home/buildbot/slave-public/block_mingw32/build/exec.c:2574: error:
'QEMU_MADV_HUGEPAGE' undeclared (first use in this function)
/home/buildbot/slave-public/block_mingw32/build/exec.c:2574: error:
(Each undeclared identifier is reported only once
/home/buildbot/slave-public/block_mingw32/build/exec.c:2574: error: for
each function it appears in.)
make[1]: *** [exec.o] Error 1
make: *** [subdir-i386-softmmu] Error 2

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

* [Qemu-devel] buildbot failure in qemu on block_mingw32
@ 2012-10-24  1:05 qemu
  2012-10-24  9:16 ` Kevin Wolf
  0 siblings, 1 reply; 36+ messages in thread
From: qemu @ 2012-10-24  1:05 UTC (permalink / raw)
  To: agraf, gollub, lcapitulino, qemu-devel

The Buildbot has detected a new failure on builder block_mingw32 while building qemu.
Full details are available at:
 http://buildbot.b1-systems.de/qemu/builders/block_mingw32/builds/363

Buildbot URL: http://buildbot.b1-systems.de/qemu/

Buildslave for this Build: kraxel_rhel61

Build Reason: The Nightly scheduler named 'nightly_block' triggered this build
Build Source Stamp: [branch block] HEAD
Blamelist: 

BUILD FAILED: failed compile

sincerely,
 -The Buildbot


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

* Re: [Qemu-devel] buildbot failure in qemu on block_mingw32
  2012-10-22 12:30 ` Kevin Wolf
@ 2012-10-22 13:54   ` Corey Bryant
  0 siblings, 0 replies; 36+ messages in thread
From: Corey Bryant @ 2012-10-22 13:54 UTC (permalink / raw)
  To: Kevin Wolf; +Cc: lcapitulino, gollub, qemu, qemu-devel, agraf


On 10/22/2012 08:30 AM, Kevin Wolf wrote:
> Am 20.10.2012 03:04, schrieb qemu@buildbot.b1-systems.de:
>> The Buildbot has detected a new failure on builder block_mingw32 while building qemu.
>> Full details are available at:
>>   http://buildbot.b1-systems.de/qemu/builders/block_mingw32/builds/359
>>
>> Buildbot URL: http://buildbot.b1-systems.de/qemu/
>>
>> Buildslave for this Build: kraxel_rhel61
>>
>> Build Reason: The Nightly scheduler named 'nightly_block' triggered this build
>> Build Source Stamp: [branch block] HEAD
>> Blamelist:
>>
>> BUILD FAILED: failed compile
>>
>> sincerely,
>>   -The Buildbot
>
> This one is for you, Corey:
>
>    CC    vl.o
> In file included from
> /usr/i686-pc-mingw32/sys-root/mingw/include/glib-2.0/glib/gthread.h:36,
>                   from
> /usr/i686-pc-mingw32/sys-root/mingw/include/glib-2.0/glib/gasyncqueue.h:34,
>                   from
> /usr/i686-pc-mingw32/sys-root/mingw/include/glib-2.0/glib.h:34,
>                   from qemu-common.h:41,
>                   from bitmap.h:15,
>                   from vl.c:31:
> /usr/i686-pc-mingw32/sys-root/mingw/include/glib-2.0/glib/gutils.h:290:
> warning: redundant redeclaration of 'atexit'
> /usr/i686-pc-mingw32/sys-root/mingw/include/stdlib.h:371: note: previous
> declaration of 'atexit' was here
> vl.c: In function 'parse_add_fd':
> vl.c:819: warning: implicit declaration of function 'fcntl'
> vl.c:819: warning: nested extern declaration of 'fcntl'
> vl.c:819: error: 'F_GETFD' undeclared (first use in this function)
> vl.c:819: error: (Each undeclared identifier is reported only once
> vl.c:819: error: for each function it appears in.)
> vl.c:820: error: 'FD_CLOEXEC' undeclared (first use in this function)
> make: *** [vl.o] Error 1
>
> Kevin
>

I just sent a patch for this.  See subject: "[PATCH] main: Hide F_GETFD 
and FD_CLOEXEC use for _WIN32"

-- 
Regards,
Corey Bryant

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

* Re: [Qemu-devel] buildbot failure in qemu on block_mingw32
  2012-10-20  1:04 qemu
@ 2012-10-22 12:30 ` Kevin Wolf
  2012-10-22 13:54   ` Corey Bryant
  0 siblings, 1 reply; 36+ messages in thread
From: Kevin Wolf @ 2012-10-22 12:30 UTC (permalink / raw)
  To: qemu; +Cc: qemu-devel, gollub, Corey Bryant, agraf, lcapitulino

Am 20.10.2012 03:04, schrieb qemu@buildbot.b1-systems.de:
> The Buildbot has detected a new failure on builder block_mingw32 while building qemu.
> Full details are available at:
>  http://buildbot.b1-systems.de/qemu/builders/block_mingw32/builds/359
> 
> Buildbot URL: http://buildbot.b1-systems.de/qemu/
> 
> Buildslave for this Build: kraxel_rhel61
> 
> Build Reason: The Nightly scheduler named 'nightly_block' triggered this build
> Build Source Stamp: [branch block] HEAD
> Blamelist: 
> 
> BUILD FAILED: failed compile
> 
> sincerely,
>  -The Buildbot

This one is for you, Corey:

  CC    vl.o
In file included from
/usr/i686-pc-mingw32/sys-root/mingw/include/glib-2.0/glib/gthread.h:36,
                 from
/usr/i686-pc-mingw32/sys-root/mingw/include/glib-2.0/glib/gasyncqueue.h:34,
                 from
/usr/i686-pc-mingw32/sys-root/mingw/include/glib-2.0/glib.h:34,
                 from qemu-common.h:41,
                 from bitmap.h:15,
                 from vl.c:31:
/usr/i686-pc-mingw32/sys-root/mingw/include/glib-2.0/glib/gutils.h:290:
warning: redundant redeclaration of 'atexit'
/usr/i686-pc-mingw32/sys-root/mingw/include/stdlib.h:371: note: previous
declaration of 'atexit' was here
vl.c: In function 'parse_add_fd':
vl.c:819: warning: implicit declaration of function 'fcntl'
vl.c:819: warning: nested extern declaration of 'fcntl'
vl.c:819: error: 'F_GETFD' undeclared (first use in this function)
vl.c:819: error: (Each undeclared identifier is reported only once
vl.c:819: error: for each function it appears in.)
vl.c:820: error: 'FD_CLOEXEC' undeclared (first use in this function)
make: *** [vl.o] Error 1

Kevin

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

* [Qemu-devel] buildbot failure in qemu on block_mingw32
@ 2012-10-20  1:04 qemu
  2012-10-22 12:30 ` Kevin Wolf
  0 siblings, 1 reply; 36+ messages in thread
From: qemu @ 2012-10-20  1:04 UTC (permalink / raw)
  To: agraf, gollub, lcapitulino, qemu-devel

The Buildbot has detected a new failure on builder block_mingw32 while building qemu.
Full details are available at:
 http://buildbot.b1-systems.de/qemu/builders/block_mingw32/builds/359

Buildbot URL: http://buildbot.b1-systems.de/qemu/

Buildslave for this Build: kraxel_rhel61

Build Reason: The Nightly scheduler named 'nightly_block' triggered this build
Build Source Stamp: [branch block] HEAD
Blamelist: 

BUILD FAILED: failed compile

sincerely,
 -The Buildbot


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

* [Qemu-devel] buildbot failure in qemu on block_mingw32
@ 2012-09-20  6:12 qemu
  0 siblings, 0 replies; 36+ messages in thread
From: qemu @ 2012-09-20  6:12 UTC (permalink / raw)
  To: agraf, gollub, lcapitulino, qemu-devel

The Buildbot has detected a new failure on builder block_mingw32 while building qemu.
Full details are available at:
 http://buildbot.b1-systems.de/qemu/builders/block_mingw32/builds/329

Buildbot URL: http://buildbot.b1-systems.de/qemu/

Buildslave for this Build: kraxel_rhel61

Build Reason: The Nightly scheduler named 'nightly_block' triggered this build
Build Source Stamp: [branch block] HEAD
Blamelist: 

BUILD FAILED: failed compile

sincerely,
 -The Buildbot


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

* [Qemu-devel] buildbot failure in qemu on block_mingw32
@ 2012-09-15  1:06 qemu
  0 siblings, 0 replies; 36+ messages in thread
From: qemu @ 2012-09-15  1:06 UTC (permalink / raw)
  To: agraf, gollub, lcapitulino, qemu-devel

The Buildbot has detected a new failure on builder block_mingw32 while building qemu.
Full details are available at:
 http://buildbot.b1-systems.de/qemu/builders/block_mingw32/builds/325

Buildbot URL: http://buildbot.b1-systems.de/qemu/

Buildslave for this Build: kraxel_rhel61

Build Reason: The Nightly scheduler named 'nightly_block' triggered this build
Build Source Stamp: [branch block] HEAD
Blamelist: 

BUILD FAILED: failed compile

sincerely,
 -The Buildbot


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

* [Qemu-devel] buildbot failure in qemu on block_mingw32
@ 2012-09-08  1:38 qemu
  0 siblings, 0 replies; 36+ messages in thread
From: qemu @ 2012-09-08  1:38 UTC (permalink / raw)
  To: agraf, gollub, lcapitulino, qemu-devel

The Buildbot has detected a new failure on builder block_mingw32 while building qemu.
Full details are available at:
 http://buildbot.b1-systems.de/qemu/builders/block_mingw32/builds/318

Buildbot URL: http://buildbot.b1-systems.de/qemu/

Buildslave for this Build: kraxel_rhel61

Build Reason: The Nightly scheduler named 'nightly_block' triggered this build
Build Source Stamp: [branch block] HEAD
Blamelist: 

BUILD FAILED: failed compile

sincerely,
 -The Buildbot


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

* [Qemu-devel] buildbot failure in qemu on block_mingw32
@ 2012-08-15  1:04 qemu
  0 siblings, 0 replies; 36+ messages in thread
From: qemu @ 2012-08-15  1:04 UTC (permalink / raw)
  To: agraf, gollub, lcapitulino, qemu-devel

The Buildbot has detected a new failure on builder block_mingw32 while building qemu.
Full details are available at:
 http://buildbot.b1-systems.de/qemu/builders/block_mingw32/builds/295

Buildbot URL: http://buildbot.b1-systems.de/qemu/

Buildslave for this Build: kraxel_rhel61

Build Reason: The Nightly scheduler named 'nightly_block' triggered this build
Build Source Stamp: [branch block] HEAD
Blamelist: 

BUILD FAILED: failed compile

sincerely,
 -The Buildbot


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

* [Qemu-devel] buildbot failure in qemu on block_mingw32
@ 2012-08-09  1:04 qemu
  0 siblings, 0 replies; 36+ messages in thread
From: qemu @ 2012-08-09  1:04 UTC (permalink / raw)
  To: agraf, gollub, lcapitulino, qemu-devel

The Buildbot has detected a new failure on builder block_mingw32 while building qemu.
Full details are available at:
 http://buildbot.b1-systems.de/qemu/builders/block_mingw32/builds/289

Buildbot URL: http://buildbot.b1-systems.de/qemu/

Buildslave for this Build: kraxel_rhel61

Build Reason: The Nightly scheduler named 'nightly_block' triggered this build
Build Source Stamp: [branch block] HEAD
Blamelist: 

BUILD FAILED: failed compile

sincerely,
 -The Buildbot


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

* [Qemu-devel] buildbot failure in qemu on block_mingw32
@ 2012-08-07  1:03 qemu
  0 siblings, 0 replies; 36+ messages in thread
From: qemu @ 2012-08-07  1:03 UTC (permalink / raw)
  To: agraf, gollub, lcapitulino, qemu-devel

The Buildbot has detected a new failure on builder block_mingw32 while building qemu.
Full details are available at:
 http://buildbot.b1-systems.de/qemu/builders/block_mingw32/builds/287

Buildbot URL: http://buildbot.b1-systems.de/qemu/

Buildslave for this Build: kraxel_rhel61

Build Reason: The Nightly scheduler named 'nightly_block' triggered this build
Build Source Stamp: [branch block] HEAD
Blamelist: 

BUILD FAILED: failed compile

sincerely,
 -The Buildbot


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

* [Qemu-devel] buildbot failure in qemu on block_mingw32
@ 2012-07-11  1:04 qemu
  0 siblings, 0 replies; 36+ messages in thread
From: qemu @ 2012-07-11  1:04 UTC (permalink / raw)
  To: agraf, gollub, lcapitulino, qemu-devel

The Buildbot has detected a new failure on builder block_mingw32 while building qemu.
Full details are available at:
 http://buildbot.b1-systems.de/qemu/builders/block_mingw32/builds/262

Buildbot URL: http://buildbot.b1-systems.de/qemu/

Buildslave for this Build: kraxel_rhel61

Build Reason: The Nightly scheduler named 'nightly_block' triggered this build
Build Source Stamp: [branch block] HEAD
Blamelist: 

BUILD FAILED: failed compile

sincerely,
 -The Buildbot


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

* Re: [Qemu-devel] buildbot failure in qemu on block_mingw32
  2012-06-08  9:07 ` Stefan Hajnoczi
@ 2012-06-08  9:51   ` Max Filippov
  0 siblings, 0 replies; 36+ messages in thread
From: Max Filippov @ 2012-06-08  9:51 UTC (permalink / raw)
  To: Stefan Hajnoczi; +Cc: qemu-devel, gollub, agraf, lcapitulino

On Fri, Jun 8, 2012 at 1:07 PM, Stefan Hajnoczi <stefanha@gmail.com> wrote:
> On Fri, Jun 8, 2012 at 2:54 AM,  <qemu@buildbot.b1-systems.de> wrote:
>> The Buildbot has detected a new failure on builder block_mingw32 while building qemu.
>> Full details are available at:
>>  http://buildbot.b1-systems.de/qemu/builders/block_mingw32/builds/237
>
> Hi Max,
> Looks like an xtensa issue, just wanted to draw your attention.  Maybe
> it's already fixed?

Stefan, thanks for noticing. I've posted a patch that should fix it.

> /home/buildbot/slave-public/block_mingw32/build/hw/xtensa_lx60.c: In
> function 'lx_init':
> /home/buildbot/slave-public/block_mingw32/build/hw/xtensa_lx60.c:212:
> warning: implicit declaration of function 'drive_get'
> /home/buildbot/slave-public/block_mingw32/build/hw/xtensa_lx60.c:212:
> warning: nested extern declaration of 'drive_get'
> /home/buildbot/slave-public/block_mingw32/build/hw/xtensa_lx60.c:212:
> error: 'IF_PFLASH' undeclared (first use in this function)
> /home/buildbot/slave-public/block_mingw32/build/hw/xtensa_lx60.c:212:
> error: (Each undeclared identifier is reported only once
> /home/buildbot/slave-public/block_mingw32/build/hw/xtensa_lx60.c:212:
> error: for each function it appears in.)
> /home/buildbot/slave-public/block_mingw32/build/hw/xtensa_lx60.c:216:
> error: dereferencing pointer to incomplete type
>
> Full details here:
>
> http://buildbot.b1-systems.de/qemu/builders/block_mingw32/builds/237/steps/compile/logs/stdio
>
> Stefan

-- 
Thanks.
-- Max

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

* Re: [Qemu-devel] buildbot failure in qemu on block_mingw32
  2012-06-08  1:54 qemu
@ 2012-06-08  9:07 ` Stefan Hajnoczi
  2012-06-08  9:51   ` Max Filippov
  0 siblings, 1 reply; 36+ messages in thread
From: Stefan Hajnoczi @ 2012-06-08  9:07 UTC (permalink / raw)
  To: Max Filippov; +Cc: qemu-devel, gollub, agraf, lcapitulino

On Fri, Jun 8, 2012 at 2:54 AM,  <qemu@buildbot.b1-systems.de> wrote:
> The Buildbot has detected a new failure on builder block_mingw32 while building qemu.
> Full details are available at:
>  http://buildbot.b1-systems.de/qemu/builders/block_mingw32/builds/237

Hi Max,
Looks like an xtensa issue, just wanted to draw your attention.  Maybe
it's already fixed?

/home/buildbot/slave-public/block_mingw32/build/hw/xtensa_lx60.c: In
function 'lx_init':
/home/buildbot/slave-public/block_mingw32/build/hw/xtensa_lx60.c:212:
warning: implicit declaration of function 'drive_get'
/home/buildbot/slave-public/block_mingw32/build/hw/xtensa_lx60.c:212:
warning: nested extern declaration of 'drive_get'
/home/buildbot/slave-public/block_mingw32/build/hw/xtensa_lx60.c:212:
error: 'IF_PFLASH' undeclared (first use in this function)
/home/buildbot/slave-public/block_mingw32/build/hw/xtensa_lx60.c:212:
error: (Each undeclared identifier is reported only once
/home/buildbot/slave-public/block_mingw32/build/hw/xtensa_lx60.c:212:
error: for each function it appears in.)
/home/buildbot/slave-public/block_mingw32/build/hw/xtensa_lx60.c:216:
error: dereferencing pointer to incomplete type

Full details here:

http://buildbot.b1-systems.de/qemu/builders/block_mingw32/builds/237/steps/compile/logs/stdio

Stefan

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

* [Qemu-devel] buildbot failure in qemu on block_mingw32
@ 2012-06-08  1:54 qemu
  2012-06-08  9:07 ` Stefan Hajnoczi
  0 siblings, 1 reply; 36+ messages in thread
From: qemu @ 2012-06-08  1:54 UTC (permalink / raw)
  To: agraf, gollub, lcapitulino, qemu-devel

The Buildbot has detected a new failure on builder block_mingw32 while building qemu.
Full details are available at:
 http://buildbot.b1-systems.de/qemu/builders/block_mingw32/builds/237

Buildbot URL: http://buildbot.b1-systems.de/qemu/

Buildslave for this Build: kraxel_rhel61

Build Reason: The Nightly scheduler named 'nightly_block' triggered this build
Build Source Stamp: [branch block] HEAD
Blamelist: 

BUILD FAILED: failed compile

sincerely,
 -The Buildbot


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

* [Qemu-devel] buildbot failure in qemu on block_mingw32
@ 2012-06-05  1:50 qemu
  0 siblings, 0 replies; 36+ messages in thread
From: qemu @ 2012-06-05  1:50 UTC (permalink / raw)
  To: agraf, gollub, lcapitulino, qemu-devel

The Buildbot has detected a new failure on builder block_mingw32 while building qemu.
Full details are available at:
 http://buildbot.b1-systems.de/qemu/builders/block_mingw32/builds/234

Buildbot URL: http://buildbot.b1-systems.de/qemu/

Buildslave for this Build: kraxel_rhel61

Build Reason: The Nightly scheduler named 'nightly_block' triggered this build
Build Source Stamp: [branch block] HEAD
Blamelist: 

BUILD FAILED: failed compile

sincerely,
 -The Buildbot


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

* Re: [Qemu-devel] buildbot failure in qemu on block_mingw32
  2012-05-10  1:04 qemu
@ 2012-05-10  7:28 ` Paolo Bonzini
  0 siblings, 0 replies; 36+ messages in thread
From: Paolo Bonzini @ 2012-05-10  7:28 UTC (permalink / raw)
  To: qemu-devel

Il 10/05/2012 03:04, qemu@buildbot.b1-systems.de ha scritto:
> The Buildbot has detected a new failure on builder block_mingw32 while building qemu.
> Full details are available at:
>  http://buildbot.b1-systems.de/qemu/builders/block_mingw32/builds/208
> 
> Buildbot URL: http://buildbot.b1-systems.de/qemu/
> 
> Buildslave for this Build: kraxel_rhel61
> 
> Build Reason: The Nightly scheduler named 'nightly_block' triggered this build
> Build Source Stamp: [branch block] HEAD
> Blamelist: 
> 
> BUILD FAILED: failed compile
> 
> sincerely,
>  -The Buildbot
> 

Mine, patch sent.

Paolo

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

* [Qemu-devel] buildbot failure in qemu on block_mingw32
@ 2012-05-10  1:04 qemu
  2012-05-10  7:28 ` Paolo Bonzini
  0 siblings, 1 reply; 36+ messages in thread
From: qemu @ 2012-05-10  1:04 UTC (permalink / raw)
  To: agraf, gollub, lcapitulino, qemu-devel

The Buildbot has detected a new failure on builder block_mingw32 while building qemu.
Full details are available at:
 http://buildbot.b1-systems.de/qemu/builders/block_mingw32/builds/208

Buildbot URL: http://buildbot.b1-systems.de/qemu/

Buildslave for this Build: kraxel_rhel61

Build Reason: The Nightly scheduler named 'nightly_block' triggered this build
Build Source Stamp: [branch block] HEAD
Blamelist: 

BUILD FAILED: failed compile

sincerely,
 -The Buildbot


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

* [Qemu-devel] buildbot failure in qemu on block_mingw32
@ 2012-04-04  1:43 qemu
  0 siblings, 0 replies; 36+ messages in thread
From: qemu @ 2012-04-04  1:43 UTC (permalink / raw)
  To: agraf, gollub, lcapitulino, qemu-devel

The Buildbot has detected a new failure on builder block_mingw32 while building qemu.
Full details are available at:
 http://buildbot.b1-systems.de/qemu/builders/block_mingw32/builds/176

Buildbot URL: http://buildbot.b1-systems.de/qemu/

Buildslave for this Build: kraxel_rhel61

Build Reason: The Nightly scheduler named 'nightly_block' triggered this build
Build Source Stamp: [branch block] HEAD
Blamelist: 

BUILD FAILED: failed git

sincerely,
 -The Buildbot


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

* Re: [Qemu-devel] buildbot failure in qemu on block_mingw32
  2012-03-03  2:05 qemu
@ 2012-03-03  9:06 ` Stefan Weil
  0 siblings, 0 replies; 36+ messages in thread
From: Stefan Weil @ 2012-03-03  9:06 UTC (permalink / raw)
  To: Anthony Liguori, Blue Swirl; +Cc: Jan Kiszka, qemu-devel

Am 03.03.2012 03:05, schrieb qemu@buildbot.b1-systems.de:
> The Buildbot has detected a new failure on builder block_mingw32 while 
> building qemu.
> Full details are available at:
> http://buildbot.b1-systems.de/qemu/builders/block_mingw32/builds/144
>
> Buildbot URL: http://buildbot.b1-systems.de/qemu/
>
> Buildslave for this Build: kraxel_rhel61
>
> Build Reason: The Nightly scheduler named 'nightly_block' triggered 
> this build
> Build Source Stamp: [branch block] HEAD
> Blamelist:
>
> BUILD FAILED: failed compile
>
> sincerely,
> -The Buildbot

This is not a new failure because it was already reported,
and there are two identical patches which both fix it:

http://patchwork.ozlabs.org/patch/143918/
http://patchwork.ozlabs.org/patch/143973/

Could someone with commit rights please commit one
of these patches to QEMU git master?

Thanks,

Stefan Weil

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

* [Qemu-devel] buildbot failure in qemu on block_mingw32
@ 2012-03-03  2:05 qemu
  2012-03-03  9:06 ` Stefan Weil
  0 siblings, 1 reply; 36+ messages in thread
From: qemu @ 2012-03-03  2:05 UTC (permalink / raw)
  To: agraf, gollub, lcapitulino, qemu-devel

The Buildbot has detected a new failure on builder block_mingw32 while building qemu.
Full details are available at:
 http://buildbot.b1-systems.de/qemu/builders/block_mingw32/builds/144

Buildbot URL: http://buildbot.b1-systems.de/qemu/

Buildslave for this Build: kraxel_rhel61

Build Reason: The Nightly scheduler named 'nightly_block' triggered this build
Build Source Stamp: [branch block] HEAD
Blamelist: 

BUILD FAILED: failed compile

sincerely,
 -The Buildbot


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

* [Qemu-devel] buildbot failure in qemu on block_mingw32
@ 2012-02-20  6:44 qemu
  0 siblings, 0 replies; 36+ messages in thread
From: qemu @ 2012-02-20  6:44 UTC (permalink / raw)
  To: agraf, gollub, lcapitulino, qemu-devel

The Buildbot has detected a new failure on builder block_mingw32 while building qemu.
Full details are available at:
 http://buildbot.b1-systems.de/qemu/builders/block_mingw32/builds/132

Buildbot URL: http://buildbot.b1-systems.de/qemu/

Buildslave for this Build: kraxel_rhel61

Build Reason: The Nightly scheduler named 'nightly_block' triggered this build
Build Source Stamp: [branch block] HEAD
Blamelist: 

BUILD FAILED: failed git

sincerely,
 -The Buildbot


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

* [Qemu-devel] buildbot failure in qemu on block_mingw32
@ 2012-01-24  2:05 qemu
  0 siblings, 0 replies; 36+ messages in thread
From: qemu @ 2012-01-24  2:05 UTC (permalink / raw)
  To: agraf, gollub, lcapitulino, qemu-devel

The Buildbot has detected a new failure on builder block_mingw32 while building qemu.
Full details are available at:
 http://buildbot.b1-systems.de/qemu/builders/block_mingw32/builds/105

Buildbot URL: http://buildbot.b1-systems.de/qemu/

Buildslave for this Build: kraxel_rhel61

Build Reason: The Nightly scheduler named 'nightly_block' triggered this build
Build Source Stamp: [branch block] HEAD
Blamelist: 

BUILD FAILED: failed compile

sincerely,
 -The Buildbot


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

* [Qemu-devel] buildbot failure in qemu on block_mingw32
@ 2011-12-16  2:06 qemu
  0 siblings, 0 replies; 36+ messages in thread
From: qemu @ 2011-12-16  2:06 UTC (permalink / raw)
  To: agraf, gollub, lcapitulino, qemu-devel

The Buildbot has detected a new failure on builder block_mingw32 while building qemu.
Full details are available at:
 http://buildbot.b1-systems.de/qemu/builders/block_mingw32/builds/66

Buildbot URL: http://buildbot.b1-systems.de/qemu/

Buildslave for this Build: kraxel_rhel61

Build Reason: The Nightly scheduler named 'nightly_block' triggered this build
Build Source Stamp: [branch block] HEAD
Blamelist: 

BUILD FAILED: failed compile

sincerely,
 -The Buildbot


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

* [Qemu-devel] buildbot failure in qemu on block_mingw32
@ 2011-11-23  2:04 qemu
  0 siblings, 0 replies; 36+ messages in thread
From: qemu @ 2011-11-23  2:04 UTC (permalink / raw)
  To: agraf, gollub, lcapitulino, qemu-devel

The Buildbot has detected a new failure on builder block_mingw32 while building qemu.
Full details are available at:
 http://buildbot.b1-systems.de/qemu/builders/block_mingw32/builds/43

Buildbot URL: http://buildbot.b1-systems.de/qemu/

Buildslave for this Build: kraxel_rhel61

Build Reason: The Nightly scheduler named 'nightly_block' triggered this build
Build Source Stamp: [branch block] HEAD
Blamelist: 

BUILD FAILED: failed compile

sincerely,
 -The Buildbot


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

end of thread, other threads:[~2013-01-16  0:06 UTC | newest]

Thread overview: 36+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-11-20  0:04 [Qemu-devel] buildbot failure in qemu on block_mingw32 qemu
2012-11-20 13:36 ` Stefan Hajnoczi
2012-11-20 13:49   ` Anthony Liguori
  -- strict thread matches above, loose matches on Subject: below --
2013-01-16  0:06 qemu
2013-01-08  0:06 qemu
2013-01-09  8:53 ` Stefan Hajnoczi
2013-01-09 17:16   ` Stefan Weil
2013-01-10 12:44     ` Stefan Hajnoczi
2013-01-10 13:08       ` Gerd Hoffmann
2012-12-17  0:23 qemu
2012-10-24  1:05 qemu
2012-10-24  9:16 ` Kevin Wolf
2012-10-24 11:39   ` Luiz Capitulino
2012-10-20  1:04 qemu
2012-10-22 12:30 ` Kevin Wolf
2012-10-22 13:54   ` Corey Bryant
2012-09-20  6:12 qemu
2012-09-15  1:06 qemu
2012-09-08  1:38 qemu
2012-08-15  1:04 qemu
2012-08-09  1:04 qemu
2012-08-07  1:03 qemu
2012-07-11  1:04 qemu
2012-06-08  1:54 qemu
2012-06-08  9:07 ` Stefan Hajnoczi
2012-06-08  9:51   ` Max Filippov
2012-06-05  1:50 qemu
2012-05-10  1:04 qemu
2012-05-10  7:28 ` Paolo Bonzini
2012-04-04  1:43 qemu
2012-03-03  2:05 qemu
2012-03-03  9:06 ` Stefan Weil
2012-02-20  6:44 qemu
2012-01-24  2:05 qemu
2011-12-16  2:06 qemu
2011-11-23  2:04 qemu

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.