Re: [Qemu-devel] [PATCH 4/4] target-mips: Fix MIPS_DEBUG.

2011-12-31 Thread Richard Henderson
On 12/31/2011 10:50 PM, Peter Maydell wrote: >> +static void gen_logic_imm (CPUState *env, DisasContext *ctx, uint32_t opc, >> + int rt, int rs, int16_t imm) >> { >> target_ulong uimm; >> const char *opn = "imm logic"; > > Am I missing something, or does gen_logi

[Qemu-devel] [Bug 897771] Re: qemu 1.0-rc4 no longer able to boot NetBSD-current/i386

2011-12-31 Thread Andreas Gustafsson
I found the cause of the regression. As as Stefan Weil already figured, it was caused by the following commit: commit d0ed8076cbdc26138a7e33fed5e45a35d019a103 Author: Avi Kivity Date: Sun Jul 24 17:47:18 2011 +0300 pci_host: convert conf index and data ports to memory API

[Qemu-devel] Mixed USB 1.1 and USB 2.0 on the same port

2011-12-31 Thread Erik Rull
Hi all, how can I use a USB 1.1 device on the USB 2.0 bus? Currently the EHCI implementation complains that the device is mismatches the USB version. I want to offer one root port for both USB 2.0 and USB 1.1 devices using usb-host,... Routings to the guest. Maybe only some parameters need

Re: [Qemu-devel] [PATCH 4/4] target-mips: Fix MIPS_DEBUG.

2011-12-31 Thread Andreas Färber
Am 31.12.2011 05:54, schrieb Richard Henderson: > The macro uses the DisasContext. Pass it around as needed. This fixes a build failure, right? Order it first then? Since there's no cover letter, series looks mostly good. Some minor comments. > > Signed-off-by: Richard Henderson > --- > targ

Re: [Qemu-devel] [PATCH 2/3] target-mips:enabling of 64 bit user mode and floating point operations MIPS_HFLAG_UX is included in env->hflags so that the address computation for LD instruction does not

2011-12-31 Thread Andreas Färber
Am 31.12.2011 08:42, schrieb Khansa Butt: > On Fri, Dec 9, 2011 at 5:04 AM, Andreas Färber wrote: >> Am 08.12.2011 06:25, schrieb kha...@kics.edu.pk: >>> diff --git a/target-mips/translate.c b/target-mips/translate.c >>> index d5b1c76..452a63b 100644 >>> --- a/target-mips/translate.c >>> +++ b/tar

Re: [Qemu-devel] [PATCH 4/4] target-mips: Fix MIPS_DEBUG.

2011-12-31 Thread Peter Maydell
On 31 December 2011 04:54, Richard Henderson wrote: > The macro uses the DisasContext.  Pass it around as needed. > > Signed-off-by: Richard Henderson > --- >  target-mips/translate.c |   80 > ++- >  1 files changed, 44 insertions(+), 36 deletions(-) >

Re: [Qemu-devel] [PATCH V2] Make python mandatory

2011-12-31 Thread Peter Maydell
On 31 December 2011 11:14, Sebastian Herbszt wrote: > +if ! has $python; then > +  echo "Python not found. Use --python=/path/to/python" > +  exit 1 >  fi This will do the wrong thing if the user runs configure with '--python=/path with spaces/python', but the Makefile won't cope with that either

Re: [Qemu-devel] [PATCH V2] Make python mandatory

2011-12-31 Thread Stefan Weil
Am 31.12.2011 12:14, schrieb Sebastian Herbszt: Make python mandatory. Signed-off-by: Sebastian Herbszt --- configure | 10 +++--- 1 files changed, 3 insertions(+), 7 deletions(-) diff --git a/configure b/configure index 640e815..a54439d 100755 --- a/configure +++ b/configure @@ -1185,13 +1

[Qemu-devel] [PATCH V2] Make python mandatory

2011-12-31 Thread Sebastian Herbszt
Make python mandatory. Signed-off-by: Sebastian Herbszt --- configure | 10 +++--- 1 files changed, 3 insertions(+), 7 deletions(-) diff --git a/configure b/configure index 640e815..a54439d 100755 --- a/configure +++ b/configure @@ -1185,13 +1185,9 @@ if test "$solaris" = "yes" ; then

Re: [Qemu-devel] [PATCH v6] block:add-cow file format

2011-12-31 Thread Dong Xu Wang
On Fri, Dec 30, 2011 at 22:09, Stefan Hajnoczi wrote: > On Thu, Dec 29, 2011 at 05:36:59PM +0800, Dong Xu Wang wrote: > > Some comments on everything but the I/O path, which I haven't reviewed > yet: > > > diff --git a/block/add-cow.c b/block/add-cow.c > > new file mode 100644 > > index 000..

[Qemu-devel] [PATCH 2/2] block: track dirty flag status in qed

2011-12-31 Thread Dong Xu Wang
From: Dong Xu Wang qed driver use QED_F_NEED_CHECK to mark if the image is clean. CC: Kevin Wolf CC: Stefan Hajnoczi Signed-off-by: Dong Xu Wang --- block/qed.c |7 +++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/block/qed.c b/block/qed.c index 8da3ebe..1e909b1 100

[Qemu-devel] [PATCH 1/2] block: add dirty flag status to qemu-img

2011-12-31 Thread Dong Xu Wang
From: Dong Xu Wang Some block drivers can verify their image files are clean or not. So we can show it while using "qemu-img info" CC: Kevin Wolf CC: Stefan Hajnoczi Signed-off-by: Dong Xu Wang --- Previous discussion can be found at: http://patchwork.ozlabs.org/patch/128730/ block.c |