From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:58716) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TgaOW-0007q7-47 for qemu-devel@nongnu.org; Thu, 06 Dec 2012 07:17:42 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TgaOM-0007rV-Nl for qemu-devel@nongnu.org; Thu, 06 Dec 2012 07:17:36 -0500 Date: Thu, 6 Dec 2012 07:17:23 -0500 (EST) From: Alon Levy Message-ID: <208105688.43842791.1354796243900.JavaMail.root@redhat.com> In-Reply-To: <50C08B66.5030607@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] arch_init/ram_load: add error message for block length mismatch List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Orit Wasserman Cc: qemu-trivial@nongnu.org, qemu-devel@nongnu.org > On 12/06/2012 02:02 PM, Alon Levy wrote: > > Signed-off-by: Alon Levy > > --- > > arch_init.c | 4 +++- > > 1 file changed, 3 insertions(+), 1 deletion(-) > > > > diff --git a/arch_init.c b/arch_init.c > > index e6effe8..84bca99 100644 > > --- a/arch_init.c > > +++ b/arch_init.c > > @@ -808,8 +808,10 @@ static int ram_load(QEMUFile *f, void *opaque, > > int version_id) > > QLIST_FOREACH(block, &ram_list.blocks, next) { > > if (!strncmp(id, block->idstr, > > sizeof(id))) { > > if (block->length != length) { > > + fprintf(stderr, "Length mismatch: > > %s: %d " > > + "in != %d\n", id, length, > > + block->length); > > ret = -EINVAL; > > - goto done; > > } > > break; > > } > > > Reviewed-by: Orit Wasserman > > But the real question is what did we break this time? can it be > fixed? qxl - we changed the rom bar size for all revisions of the device. I'm checking the upstream fix and will send it when I'm happy. > > Orit > >