All of lore.kernel.org
 help / color / mirror / Atom feed
From: Stefan Weil <sw@weilnetz.de>
To: rui chen <chennrui@gmail.com>
Cc: qemu-trivial <qemu-trivial@nongnu.org>,
	qemu-devel@nongnu.org, aurelien@aurel32.net,
	Paul Brook <paul@codesourcery.com>
Subject: Re: [Qemu-trivial] [Qemu-devel] endless loop when use qemu-system-mipsel to load bios
Date: Sat, 03 Dec 2011 23:27:29 +0100	[thread overview]
Message-ID: <4EDAA251.6090305@weilnetz.de> (raw)
In-Reply-To: <CAMOKqhKB_JD91CRGie7WMKz24OgGW55W=XOMkAZQFJ=gNEkL-Q@mail.gmail.com>

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

Am 16.11.2011 16:21, schrieb rui chen:
> sorry, here is my new patch file:
>
> From 05f4abe8d8c37f1585f2bb7cb89b15426044bb65 Mon Sep 17 00:00:00 2001
> From: Chen Rui <chennrui@gmail.com <mailto:chennrui@gmail.com>>
> Date: Sun, 13 Nov 2011 19:42:42 +0800
> Subject: [PATCH] resolve an endless loop when use qemu-system-mipsel 
> to load bios
>
>
> Signed-off-by: Chen Rui <chennrui@gmail.com <mailto:chennrui@gmail.com>>
> ---
>  hw/mips_malta.c |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
>
> diff --git a/hw/mips_malta.c b/hw/mips_malta.c
> index bb49749..e7dfbd6 100644
> --- a/hw/mips_malta.c
> +++ b/hw/mips_malta.c
> @@ -911,6 +911,7 @@ void mips_malta_init (ram_addr_t ram_size,
>              uint32_t *end = addr + bios_size;
>              while (addr < end) {
>                  bswap32s(addr);
> +                addr++;
>              }
>          }
>  #endif
> -- 
> 1.7.1

This patch fixes a regression introduced by commit
d758525180e0efff8a59cfea11f5f8348014ff6a
(More phys_ram_base elimination).

Please apply it to QEMU git master (with a modified subject, s/use/using/).

Tested-by: Stefan Weil <sw@weilnetz.de>

Regards,
Stefan Weil


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

WARNING: multiple messages have this Message-ID (diff)
From: Stefan Weil <sw@weilnetz.de>
To: rui chen <chennrui@gmail.com>
Cc: qemu-trivial <qemu-trivial@nongnu.org>,
	qemu-devel@nongnu.org, aurelien@aurel32.net,
	Paul Brook <paul@codesourcery.com>
Subject: Re: [Qemu-devel] endless loop when use qemu-system-mipsel to load bios
Date: Sat, 03 Dec 2011 23:27:29 +0100	[thread overview]
Message-ID: <4EDAA251.6090305@weilnetz.de> (raw)
In-Reply-To: <CAMOKqhKB_JD91CRGie7WMKz24OgGW55W=XOMkAZQFJ=gNEkL-Q@mail.gmail.com>

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

Am 16.11.2011 16:21, schrieb rui chen:
> sorry, here is my new patch file:
>
> From 05f4abe8d8c37f1585f2bb7cb89b15426044bb65 Mon Sep 17 00:00:00 2001
> From: Chen Rui <chennrui@gmail.com <mailto:chennrui@gmail.com>>
> Date: Sun, 13 Nov 2011 19:42:42 +0800
> Subject: [PATCH] resolve an endless loop when use qemu-system-mipsel 
> to load bios
>
>
> Signed-off-by: Chen Rui <chennrui@gmail.com <mailto:chennrui@gmail.com>>
> ---
>  hw/mips_malta.c |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
>
> diff --git a/hw/mips_malta.c b/hw/mips_malta.c
> index bb49749..e7dfbd6 100644
> --- a/hw/mips_malta.c
> +++ b/hw/mips_malta.c
> @@ -911,6 +911,7 @@ void mips_malta_init (ram_addr_t ram_size,
>              uint32_t *end = addr + bios_size;
>              while (addr < end) {
>                  bswap32s(addr);
> +                addr++;
>              }
>          }
>  #endif
> -- 
> 1.7.1

This patch fixes a regression introduced by commit
d758525180e0efff8a59cfea11f5f8348014ff6a
(More phys_ram_base elimination).

Please apply it to QEMU git master (with a modified subject, s/use/using/).

Tested-by: Stefan Weil <sw@weilnetz.de>

Regards,
Stefan Weil


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

  reply	other threads:[~2011-12-03 22:28 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-11-11 18:26 [Qemu-devel] endless loop when use qemu-system-mipsel to load bios rui chen
2011-11-15 14:41 ` Markus Armbruster
2011-11-16 15:21   ` rui chen
2011-12-03 22:27     ` Stefan Weil [this message]
2011-12-03 22:27       ` Stefan Weil
2011-12-06 10:44       ` [Qemu-trivial] " Stefan Hajnoczi
2011-12-06 10:44         ` [Qemu-devel] [Qemu-trivial] " Stefan Hajnoczi

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=4EDAA251.6090305@weilnetz.de \
    --to=sw@weilnetz.de \
    --cc=aurelien@aurel32.net \
    --cc=chennrui@gmail.com \
    --cc=paul@codesourcery.com \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-trivial@nongnu.org \
    /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.