qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH  0/7] clean build - eliminate warnings
@ 2009-02-21 19:00 Jan Kiszka
  2009-02-21 19:00 ` [Qemu-devel] [PATCH 3/7] arm: Fix gic_irq_state.level bitfield type Jan Kiszka
                   ` (7 more replies)
  0 siblings, 8 replies; 31+ messages in thread
From: Jan Kiszka @ 2009-02-21 19:00 UTC (permalink / raw)
  To: qemu-devel

When working on larger or intrusive changes like the monitor rework, the
number of warnings a normal build generates (here: x86-64 host, gcc 4.3)
is still too high. And sometimes these warnings are not just of cosmetic
nature, see (reposted) patch 3.

This series reduces the number of warnings significantly, still not to
zero (someone would have to look into the NetWinder stuff), but almost:

Warning summary for 2009-02-21 (changes since 2009-02-21-base)
  generic          0    (-1)
  softmmu          0   (-39)
    x86            0     (0)
    arm            0   (-10)
    cris           0    (-7)
    m68k           0    (-4)
    mips           0     (0)
    ppc            0     (0)
    sh4            0   (-18)
    sparc          0     (0)
  linux-user      42   (-12)
    x86            0     (0)
    arm           42    (-8)
    cris           0    (-2)
    m68k           0    (-2)
    mips           0     (0)
    ppc            0     (0)
    sh4            0     (0)
    sparc          0     (0)
    alpha          0     (0)

So please apply (unless I papered over some real bug) and also take care
to avoid new ones in the future! (Be warned: I've a script here to
generate that overview, and I won't hesitate posting "regressions" when
required ;) ).


Find the patches also at git://git.kiszka.org/qemu.git queues/warnings

Jan Kiszka (7):
      clean build: Add bt_host_hci prototype
      clean build: Fix irq_info and pic_info related warnings
      arm: Fix gic_irq_state.level bitfield type
      clean build: Fix arm build warnings
      clean build: Fix remaining cris warnings
      clean build: Fix remaining m68k warnings
      clean build: Fix remaining sh4 warnings

 arm-dis.c               |   45 ---------------------------------------------
 bt-host.c               |    2 ++
 hw/an5206.c             |    1 +
 hw/arm_boot.c           |    2 +-
 hw/arm_gic.c            |    2 +-
 hw/arm_pic.c            |    1 +
 hw/etraxfs_eth.c        |    3 +--
 hw/etraxfs_pic.c        |    1 +
 hw/etraxfs_ser.c        |    1 +
 hw/etraxfs_timer.c      |    1 +
 hw/omap_clk.c           |   17 -----------------
 hw/shix.c               |   16 +---------------
 target-arm/helper.c     |    2 +-
 target-cris/cpu.h       |    3 +++
 target-cris/exec.h      |    3 ---
 target-cris/translate.c |    2 +-
 target-m68k/cpu.h       |    3 +++
 target-m68k/exec.h      |    3 ---
 target-m68k/helper.c    |    5 -----
 target-sh4/cpu.h        |    2 ++
 target-sh4/exec.h       |    6 ------
 target-sh4/helper.c     |   14 +++++++-------
 22 files changed, 28 insertions(+), 107 deletions(-)

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

end of thread, other threads:[~2009-03-20 14:52 UTC | newest]

Thread overview: 31+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-21 19:00 [Qemu-devel] [PATCH 0/7] clean build - eliminate warnings Jan Kiszka
2009-02-21 19:00 ` [Qemu-devel] [PATCH 3/7] arm: Fix gic_irq_state.level bitfield type Jan Kiszka
2009-03-07 21:48   ` Aurelien Jarno
2009-02-21 19:00 ` [Qemu-devel] [PATCH 2/7] clean build: Fix irq_info and pic_info related warnings Jan Kiszka
2009-02-21 19:00 ` [Qemu-devel] [PATCH 1/7] clean build: Add bt_host_hci prototype Jan Kiszka
2009-03-08 14:56   ` [Qemu-devel] " Jan Kiszka
2009-03-08 18:44     ` Aurelien Jarno
2009-03-08 19:56       ` [Qemu-devel] [PATCH] clean build: Add bt-host.h Jan Kiszka
2009-03-10 21:43         ` Aurelien Jarno
2009-03-10 23:03         ` andrzej zaborowski
2009-03-11  9:02           ` [Qemu-devel] " Jan Kiszka
2009-03-20 14:51             ` andrzej zaborowski
2009-02-21 19:00 ` [Qemu-devel] [PATCH 5/7] clean build: Fix remaining cris warnings Jan Kiszka
2009-02-21 23:03   ` Stuart Brady
2009-02-21 23:12     ` Stuart Brady
2009-02-21 23:13     ` Laurent Desnogues
2009-02-22 10:36       ` [Qemu-devel] [PATCH v2 " Jan Kiszka
2009-02-22 14:14         ` Edgar E. Iglesias
2009-02-21 23:14     ` [Qemu-devel] [PATCH " Paul Brook
2009-02-21 19:00 ` [Qemu-devel] [PATCH 4/7] clean build: Fix arm build warnings Jan Kiszka
2009-03-07 21:48   ` Aurelien Jarno
2009-02-21 19:00 ` [Qemu-devel] [PATCH 7/7] clean build: Fix remaining sh4 warnings Jan Kiszka
2009-02-21 19:00 ` [Qemu-devel] [PATCH 6/7] clean build: Fix remaining m68k warnings Jan Kiszka
2009-03-07 21:48   ` Aurelien Jarno
2009-02-21 19:43 ` [Qemu-devel] [PATCH 0/7] clean build - eliminate warnings Laurent Desnogues
2009-02-21 20:09   ` [Qemu-devel] " Jan Kiszka
2009-02-21 23:08     ` Laurent Desnogues
2009-02-22 10:39       ` Jan Kiszka
2009-02-22 11:09         ` Jan Kiszka
2009-02-22  0:59     ` Edgar E. Iglesias
2009-02-22 10:20       ` Jan Kiszka

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).