qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [Patch] [Resend] Fix sigsegv on Windows host


From: Anthony Liguori
Subject: Re: [Qemu-devel] [Patch] [Resend] Fix sigsegv on Windows host
Date: Mon, 02 Mar 2009 15:20:51 -0600
User-agent: Thunderbird 2.0.0.19 (X11/20090105)

Robert Riebisch wrote:
Consul wrote:

Is there a reason this patch has not been applied? I'm still getting sigsegv 
early in the boot of Windows images without it.
s->bounce has been VirtualAlloc'ed and should be VirtualFree'ed.

signed-off-by Alex Ivanov <address@hidden>

--- block.c     (revision 6653)
+++ block.c     (working copy)
@@ -1263,7 +1263,7 @@
      if (!s->is_write) {
          qemu_iovec_from_buffer(s->iov, s->bounce, s->iov->size);
      }
-    qemu_free(s->bounce);
+    qemu_vfree(s->bounce);
      s->this_aiocb->cb(s->this_aiocb->opaque, ret);
      qemu_aio_release(s->this_aiocb);
  }

Could someone please apply this to SVN?! Thanks!

It's in my queue to be applied before the release so it'll be there soon.

Regards,

Anthony Liguori

Robert Riebisch





reply via email to

[Prev in Thread] Current Thread [Next in Thread]