From: Consul <void@aleksoft.net>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [Patch] [Resend] Fix sigsegv on Windows host
Date: Fri, 27 Feb 2009 14:55:25 -0800 [thread overview]
Message-ID: <go9r0v$3e5$1@ger.gmane.org> (raw)
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 <void@aleksoft.net>
--- 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);
}
next reply other threads:[~2009-02-27 22:56 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-02-27 22:55 Consul [this message]
2009-03-02 20:37 ` [Qemu-devel] [Patch] [Resend] Fix sigsegv on Windows host Robert Riebisch
2009-03-02 21:20 ` Anthony Liguori
2009-03-03 19:35 ` Robert Riebisch
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='go9r0v$3e5$1@ger.gmane.org' \
--to=void@aleksoft.net \
--cc=qemu-devel@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 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).