qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Dr. David Alan Gilbert" <dgilbert@redhat.com>
To: Changlong Xie <xiecl.fnst@cn.fujitsu.com>,
	zhanghailiang <zhang.zhanghailiang@huawei.com>,
	Wen Congyang <wency@cn.fujitsu.com>
Cc: Kevin Wolf <kwolf@redhat.com>, Fam Zheng <famz@redhat.com>,
	qemu block <qemu-block@nongnu.org>,
	Jiang Yunhong <yunhong.jiang@intel.com>,
	Dong Eddie <eddie.dong@intel.com>,
	qemu devel <qemu-devel@nongnu.org>,
	"Michael R. Hines" <mrhines@linux.vnet.ibm.com>,
	Max Reitz <mreitz@redhat.com>,
	Stefan Hajnoczi <stefanha@redhat.com>,
	Paolo Bonzini <pbonzini@redhat.com>
Subject: Re: [Qemu-devel] [PATCH v13 00/10] Block replication for continuous checkpoints
Date: Fri, 22 Jan 2016 15:14:13 +0000	[thread overview]
Message-ID: <20160122151412.GD2482@work-vm> (raw)
In-Reply-To: <1451039434-8264-1-git-send-email-xiecl.fnst@cn.fujitsu.com>

Hi,
  I can trigger a segfault if I wire in the block replication together with
a quorum instance; it only triggers with both of them present but,
it looks like the problem is a disagreement about the number of quorum
members;  I'm triggering this on the 'colo-v2.4-periodic-mode' branch
that is posted in the colo-framework set that I think includes this set
(from https://github.com/coloft/qemu.git).

To trigger:
./git/colo/jan-16/try/x86_64-softmmu/qemu-system-x86_64 -nographic -S

(qemu) drive_add 0 if=none,id=colo-disk0,file.filename=/home/localvms/bugzilla.raw,driver=raw,node-name=node0
(qemu) drive_add 1 if=none,id=active-disk0,throttling.bps-total=70000000,driver=replication,mode=secondary,file.driver=qcow2,file.file.filename=/run/colo-active-disk.qcow2,file.backing.driver=qcow2,file.backing.file.filename=/run/colo-hidden-disk.qcow2,file.backing.backing=colo-disk0
(qemu) drive_add 2 if=none,id=top-quorum,driver=quorum,read-pattern=fifo,vote-threshold=1,children.0=active-disk0
(qemu) device_add virtio-blk-pci,drive=top-quorum,addr=9

*** Error in `/root/colo/jan-2016/./try/x86_64-softmmu/qemu-system-x86_64': free(): invalid pointer: 0x0000555555a8fdf0 ***
======= Backtrace: =========
/lib64/libc.so.6(+0x7cfe1)[0x7ffff110ffe1]
/lib64/libglib-2.0.so.0(g_free+0xf)[0x7ffff1ecc36f]
/root/colo/jan-2016/./try/x86_64-softmmu/qemu-system-x86_64
Program received signal SIGABRT, Aborted.
0x00007ffff10c85f7 in raise () from /lib64/libc.so.6
(gdb) where
#0  0x00007ffff10c85f7 in raise () from /lib64/libc.so.6
#1  0x00007ffff10c9ce8 in abort () from /lib64/libc.so.6
#2  0x00007ffff1108317 in __libc_message () from /lib64/libc.so.6
#3  0x00007ffff110ffe1 in _int_free () from /lib64/libc.so.6
#4  0x00007ffff1ecc36f in g_free () from /lib64/libglib-2.0.so.0
#5  0x00005555559dfdd7 in qemu_iovec_destroy (qiov=0x555557815410) at /root/colo/jan-2016/qemu/util/iov.c:378
#6  0x0000555555989cce in quorum_aio_finalize (acb=0x555557815350) at /root/colo/jan-2016/qemu/block/quorum.c:171
171	            qemu_iovec_destroy(&acb->qcrs[i].qiov);
(gdb) list
166	
167	    if (acb->is_read) {
168	        /* on the quorum case acb->child_iter == s->num_children - 1 */
169	        for (i = 0; i <= acb->child_iter; i++) {
170	            qemu_vfree(acb->qcrs[i].buf);
171	            qemu_iovec_destroy(&acb->qcrs[i].qiov);
172	        }
173	    }
174	
175	    g_free(acb->qcrs);
(gdb) p acb->child_iter
$1 = 1
(gdb) p i
$3 = 1

#7  0x000055555598afca in quorum_aio_cb (opaque=<optimized out>, ret=-5)
    at /root/colo/jan-2016/qemu/block/quorum.c:302
#8  0x00005555559990ee in bdrv_co_complete (acb=0x555557815410) at /root/colo/jan-2016/qemu/block/io.c:2122
.....

So I guess acb->child_iter is wrong, since we only have one child on that quorum?
and we're trying to do a destroy on the second child.

Dave
--
Dr. David Alan Gilbert / dgilbert@redhat.com / Manchester, UK

  parent reply	other threads:[~2016-01-22 15:14 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-12-25 10:30 [Qemu-devel] [PATCH v13 00/10] Block replication for continuous checkpoints Changlong Xie
2015-12-25 10:30 ` [Qemu-devel] [PATCH v13 01/10] unblock backup operations in backing file Changlong Xie
2015-12-25 10:30 ` [Qemu-devel] [PATCH v13 02/10] Store parent BDS in BdrvChild Changlong Xie
2015-12-25 10:30 ` [Qemu-devel] [PATCH v13 03/10] Backup: clear all bitmap when doing block checkpoint Changlong Xie
2015-12-25 10:30 ` [Qemu-devel] [PATCH v13 04/10] Allow creating backup jobs when opening BDS Changlong Xie
2015-12-25 10:30 ` [Qemu-devel] [PATCH v13 05/10] docs: block replication's description Changlong Xie
2015-12-25 10:30 ` [Qemu-devel] [PATCH v13 06/10] Add new block driver interfaces to control block replication Changlong Xie
2015-12-25 10:30 ` [Qemu-devel] [PATCH v13 07/10] quorum: implement block driver interfaces for " Changlong Xie
2015-12-25 10:30 ` [Qemu-devel] [PATCH v13 08/10] Implement new driver " Changlong Xie
2015-12-25 10:30 ` [Qemu-devel] [PATCH v13 09/10] support replication driver in blockdev-add Changlong Xie
2015-12-25 10:30 ` [Qemu-devel] [PATCH v13 10/10] Add a new API to start/stop replication, do checkpoint to all BDSes Changlong Xie
2016-01-22 15:14 ` Dr. David Alan Gilbert [this message]
2016-01-25  1:06   ` [Qemu-devel] [PATCH v13 00/10] Block replication for continuous checkpoints Wen Congyang
2016-01-25 12:10     ` Dr. David Alan Gilbert
2016-01-25  1:20   ` Wen Congyang
2016-01-25 11:56     ` Dr. David Alan Gilbert
2016-01-27 11:03 ` Dr. David Alan Gilbert
2016-01-29  6:52   ` Wen Congyang
2016-01-29 10:07     ` Dr. David Alan Gilbert
2016-01-29 10:27       ` Wen Congyang
2016-01-29 10:47         ` Dr. David Alan Gilbert
2016-02-01  1:18           ` Wen Congyang
2016-02-01 10:18             ` Dr. David Alan Gilbert
2016-02-04  2:32             ` Changlong Xie
2016-02-04  9:07               ` Dr. David Alan Gilbert
2016-02-04  9:16                 ` Wen Congyang
2016-02-04 10:17                 ` Changlong Xie

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=20160122151412.GD2482@work-vm \
    --to=dgilbert@redhat.com \
    --cc=eddie.dong@intel.com \
    --cc=famz@redhat.com \
    --cc=kwolf@redhat.com \
    --cc=mreitz@redhat.com \
    --cc=mrhines@linux.vnet.ibm.com \
    --cc=pbonzini@redhat.com \
    --cc=qemu-block@nongnu.org \
    --cc=qemu-devel@nongnu.org \
    --cc=stefanha@redhat.com \
    --cc=wency@cn.fujitsu.com \
    --cc=xiecl.fnst@cn.fujitsu.com \
    --cc=yunhong.jiang@intel.com \
    --cc=zhang.zhanghailiang@huawei.com \
    /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).