From: Rusty Russell <rusty@rustcorp.com.au>
To: Sasha Levin <sasha.levin@oracle.com>
Cc: mpm@selenic.com, herbert@gondor.apana.org.au,
linux-kernel@vger.kernel.org, akong@redhat.com,
Sasha Levin <sasha.levin@oracle.com>
Subject: Re: [PATCH 1/2] virtio-rng: fix boot with virtio-rng device
Date: Fri, 16 May 2014 11:39:35 +0930 [thread overview]
Message-ID: <8738galbj4.fsf@rustcorp.com.au> (raw)
In-Reply-To: <1400160104-1888-1-git-send-email-sasha.levin@oracle.com>
Sasha Levin <sasha.levin@oracle.com> writes:
> Commit "virtio-rng: support multiple virtio-rng devices" has broken
> boot with a virtio-rng device because the 'init' callback of the
> virtio-rng device was left unitialized to garbage, and got called
> by the hwrng infrastructure, killing the guest on boot.
>
> Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
> ---
>
> Also, do we really need multiple virtio-rng devices? I know it's
> nice to have, but if there isn't a solid use-case behind it we're
> just adding bugs to working code without any benefit.
Hmm, thanks for this. It's my fault, I should have gone through this
with a fine-tooth comb once I saw the const change in hwrng.
As Amos pointed out in the commit message, qemu support multiple entropy
sources. It's a line ball: since you've done the work, I'll apply it
(if you'd just submitted a bug report I'd probably revert the commit).
AFAICT Amos owes you a beer :)
Cheers,
Rusty.
PS: Added Fixes: line.
> drivers/char/hw_random/virtio-rng.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/char/hw_random/virtio-rng.c b/drivers/char/hw_random/virtio-rng.c
> index 12e242b..5b25daa 100644
> --- a/drivers/char/hw_random/virtio-rng.c
> +++ b/drivers/char/hw_random/virtio-rng.c
> @@ -95,7 +95,7 @@ static int probe_common(struct virtio_device *vdev)
> int err, i;
> struct virtrng_info *vi = NULL;
>
> - vi = kmalloc(sizeof(struct virtrng_info), GFP_KERNEL);
> + vi = kzalloc(sizeof(struct virtrng_info), GFP_KERNEL);
> vi->hwrng.name = kmalloc(40, GFP_KERNEL);
> init_completion(&vi->have_data);
>
> --
> 1.7.10.4
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
prev parent reply other threads:[~2014-05-18 23:36 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-05-15 13:21 [PATCH 1/2] virtio-rng: fix boot with virtio-rng device Sasha Levin
2014-05-15 13:21 ` [PATCH 2/2] virtio-rng: fixes for device registration/unregistration Sasha Levin
2014-05-16 2:09 ` Rusty Russell [this message]
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=8738galbj4.fsf@rustcorp.com.au \
--to=rusty@rustcorp.com.au \
--cc=akong@redhat.com \
--cc=herbert@gondor.apana.org.au \
--cc=linux-kernel@vger.kernel.org \
--cc=mpm@selenic.com \
--cc=sasha.levin@oracle.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.