qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Cornelia Huck <cornelia.huck@de.ibm.com>
To: peter.maydell@linaro.org
Cc: Cornelia Huck <cornelia.huck@de.ibm.com>,
	borntraeger@de.ibm.com, jfrei@linux.vnet.ibm.com,
	qemu-devel@nongnu.org, agraf@suse.de
Subject: [Qemu-devel] [PULL for-2.6 11/11] s390x/cpu: use g_new0
Date: Fri, 11 Mar 2016 10:56:42 +0100	[thread overview]
Message-ID: <1457690202-10361-12-git-send-email-cornelia.huck@de.ibm.com> (raw)
In-Reply-To: <1457690202-10361-1-git-send-email-cornelia.huck@de.ibm.com>

Let's use g_new0 to allocate cpu_states.

Suggested-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
---
 hw/s390x/s390-virtio.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hw/s390x/s390-virtio.c b/hw/s390x/s390-virtio.c
index 4ea9040..7c6e281 100644
--- a/hw/s390x/s390-virtio.c
+++ b/hw/s390x/s390-virtio.c
@@ -103,7 +103,7 @@ void s390_init_cpus(MachineState *machine)
         machine->cpu_model = "host";
     }
 
-    cpu_states = g_malloc0(sizeof(S390CPU *) * max_cpus);
+    cpu_states = g_new0(S390CPU *, max_cpus);
 
     for (i = 0; i < max_cpus; i++) {
         name = g_strdup_printf("cpu[%i]", i);
-- 
2.7.2

  parent reply	other threads:[~2016-03-11  9:57 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-03-11  9:56 [Qemu-devel] [PULL for-2.6 00/11] s390x patches for 2.6 Cornelia Huck
2016-03-11  9:56 ` [Qemu-devel] [PULL for-2.6 01/11] s390x/cpu: Cleanup init in preparation for hotplug Cornelia Huck
2016-03-11  9:56 ` [Qemu-devel] [PULL for-2.6 02/11] s390x/cpu: Set initial CPU state in common routine Cornelia Huck
2016-03-11  9:56 ` [Qemu-devel] [PULL for-2.6 03/11] s390x/cpu: Get rid of side effects when creating a vcpu Cornelia Huck
2016-03-11  9:56 ` [Qemu-devel] [PULL for-2.6 04/11] s390x/cpu: Tolerate max_cpus Cornelia Huck
2016-03-11  9:56 ` [Qemu-devel] [PULL for-2.6 05/11] s390x/cpu: Add CPU property links Cornelia Huck
2016-03-11  9:56 ` [Qemu-devel] [PULL for-2.6 06/11] s390x/cpu: Add error handling to cpu creation Cornelia Huck
2016-03-11  9:56 ` [Qemu-devel] [PULL for-2.6 07/11] s390x/cpu: Allow hotplug of CPUs Cornelia Huck
2016-03-11  9:56 ` [Qemu-devel] [PULL for-2.6 08/11] pc-bios/s390-ccw: fix old bug in ptr increment Cornelia Huck
2016-03-11  9:56 ` [Qemu-devel] [PULL for-2.6 09/11] s390x: Introduce machine definition macros Cornelia Huck
2016-03-11  9:56 ` [Qemu-devel] [PULL for-2.6 10/11] s390x: Introduce S390MachineClass Cornelia Huck
2016-03-11  9:56 ` Cornelia Huck [this message]
2016-03-14 11:49 ` [Qemu-devel] [PULL for-2.6 00/11] s390x patches for 2.6 Peter Maydell

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=1457690202-10361-12-git-send-email-cornelia.huck@de.ibm.com \
    --to=cornelia.huck@de.ibm.com \
    --cc=agraf@suse.de \
    --cc=borntraeger@de.ibm.com \
    --cc=jfrei@linux.vnet.ibm.com \
    --cc=peter.maydell@linaro.org \
    --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).