From: Sasha Levin <levinsasha928@gmail.com>
To: Krishna Kumar <krkumar2@in.ibm.com>
Cc: kvm@vger.kernel.org, mst@redhat.com, netdev@vger.kernel.org,
rusty@rustcorp.com.au, virtualization@lists.linux-foundation.org,
davem@davemloft.net
Subject: Re: [RFC] [ver3 PATCH 0/6] Implement multiqueue virtio-net
Date: Sat, 12 Nov 2011 09:20:02 +0200 [thread overview]
Message-ID: <1321082402.1952.5.camel@lappy> (raw)
In-Reply-To: <20111112054546.9555.7764.sendpatchset@krkumar2.in.ibm.com>
On Sat, 2011-11-12 at 11:15 +0530, Krishna Kumar wrote:
> Sasha Levin <levinsasha928@gmail.com> wrote on 11/12/2011 03:32:04 AM:
>
> > I'm seeing this BUG() sometimes when running it using a small patch I
> > did for KVM tool:
> >
> > [ 1.281531] Call Trace:
> > [ 1.281531] [<ffffffff8138a0e5>] ? free_rq_sq+0x2c/0xce
> > [ 1.281531] [<ffffffff8138bb63>] ? virtnet_probe+0x81c/0x855
> > [ 1.281531] [<ffffffff8129c9e7>] ? virtio_dev_probe+0xa7/0xc6
> > [ 1.281531] [<ffffffff8134d2c3>] ? driver_probe_device+0xb2/0x142
> > [ 1.281531] [<ffffffff8134d3a2>] ? __driver_attach+0x4f/0x6f
> > [ 1.281531] [<ffffffff8134d353>] ? driver_probe_device+0x142/0x142
> > [ 1.281531] [<ffffffff8134c3ab>] ? bus_for_each_dev+0x47/0x72
> > [ 1.281531] [<ffffffff8134c90d>] ? bus_add_driver+0xa2/0x1e6
> > [ 1.281531] [<ffffffff81cc1b36>] ? tun_init+0x89/0x89
> > [ 1.281531] [<ffffffff8134db59>] ? driver_register+0x8d/0xf8
> > [ 1.281531] [<ffffffff81cc1b36>] ? tun_init+0x89/0x89
> > [ 1.281531] [<ffffffff81c98ac1>] ? do_one_initcall+0x78/0x130
> > [ 1.281531] [<ffffffff81c98c0e>] ? kernel_init+0x95/0x113
> > [ 1.281531] [<ffffffff81658274>] ? kernel_thread_helper+0x4/0x10
> > [ 1.281531] [<ffffffff81c98b79>] ? do_one_initcall+0x130/0x130
> > [ 1.281531] [<ffffffff81658270>] ? gs_change+0x13/0x13
> > [ 1.281531] Code: c2 85 d2 48 0f 45 2d d1 39 ce 00 eb 22 65 8b 14 25
> > 90 cc 00 00 48 8b 05 f0 a6 bc 00 48 63 d2 4c 89 e7 48 03 3c d0 e8 83 dd
> > 00 00
> > [ 1.281531] 8b 68 10 44 89 e6 48 89 ef 2b 75 18 e8 e4 f1 ff ff 8b 05
> > fd
> > [ 1.281531] RIP [<ffffffff810b3ac7>] free_percpu+0x9a/0x104
> > [ 1.281531] RSP <ffff88001383fd50>
> > [ 1.281531] CR2: 0000000000000010
> > [ 1.281531] ---[ end trace 68cbc23dfe2fe62a ]---
> >
> > I don't have time today to dig into it, sorry.
>
> Thanks for the report.
>
> free_rq_sq() was being called twice in the failure path. The second
> call panic'd since it had freed the same pointers earlier.
>
> 1. free_rq_sq() was being called twice in the failure path.
> virtnet_setup_vqs() had already freed up rq/sq on error, and
> virtnet_probe() tried to do it again. Fix it in virtnet_probe
> by moving the call up.
> 2. Make free_rq_sq() re-entrant by setting freed pointers to NULL.
> 3. Remove free_stats() as it was being called only once.
>
> Sasha, could you please try this patch on top of existing patches?
>
> thanks!
>
> Signed-off-by: krkumar2@in.ibm.com
> ---
[snip]
I've tested it and it looks good, no BUG() or panic.
I would suggest adding some output if we take the failure path, since
while the guest does boot peacefully, it doesn't have a network
interface and there's nothing in the boot log to indicate anything has
gone wrong.
--
Sasha.
next prev parent reply other threads:[~2011-11-12 7:22 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-11-12 5:45 [RFC] [ver3 PATCH 0/6] Implement multiqueue virtio-net Krishna Kumar
2011-11-12 7:20 ` Sasha Levin [this message]
-- strict thread matches above, loose matches on Subject: below --
2011-11-11 13:02 Krishna Kumar
2011-11-11 22:02 ` Sasha Levin
2011-11-13 11:40 ` Michael S. Tsirkin
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=1321082402.1952.5.camel@lappy \
--to=levinsasha928@gmail.com \
--cc=davem@davemloft.net \
--cc=krkumar2@in.ibm.com \
--cc=kvm@vger.kernel.org \
--cc=mst@redhat.com \
--cc=netdev@vger.kernel.org \
--cc=rusty@rustcorp.com.au \
--cc=virtualization@lists.linux-foundation.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).