qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] small memory leak due to MachineClass rework
@ 2014-03-17 20:56 Christian Borntraeger
  2014-03-17 21:25 ` Peter Maydell
  2014-03-18 14:57 ` Michael S. Tsirkin
  0 siblings, 2 replies; 6+ messages in thread
From: Christian Borntraeger @ 2014-03-17 20:56 UTC (permalink / raw)
  To: Marcel Apfelbaum
  Cc: qemu-devel@nongnu.org, Andreas Färber, Michael S. Tsirkin

Marcel,

after 

commit 261747f176f6 (vl: Use MachineClass instead of global QEMUMachine list) valgrind complains about the following:

==54082== 57 bytes in 3 blocks are definitely lost in loss record 365 of 729
==54082==    at 0x4031AFE: malloc (vg_replace_malloc.c:292)
==54082==    by 0x4145569: g_malloc (in /usr/lib64/libglib-2.0.so.0.3400.2)
==54082==    by 0x415F9E9: g_strconcat (in /usr/lib64/libglib-2.0.so.0.3400.2)
==54082==    by 0x80157FE7: qemu_register_machine (vl.c:1597)
==54082==    by 0x80208E6B: module_call_init (module.c:105)
==54082==    by 0x80013B91: main (vl.c:3000)

Turns out that valgrind is right. We simply forget the memory that g_strconcat has allocated.
This fixes the small leak, but I have to cast away the constness of .name.
Any better ideas?


diff --git a/vl.c b/vl.c
index 03488b9..b06d186 100644
--- a/vl.c
+++ b/vl.c
@@ -1594,13+1594,14 @@ static void machine_class_init(ObjectClass *oc, void *data)
 int qemu_register_machine(QEMUMachine *m)
 {
     TypeInfo ti = {
         .name       = g_strconcat(m->name, TYPE_MACHINE_SUFFIX, NULL),
         .parent     = TYPE_MACHINE,
         .class_init = machine_class_init,
         .class_data = (void *)m,
     };
 
     type_register(&ti);
+    g_free((gpointer) ti.name);
 
     return 0;
 }

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [Qemu-devel] small memory leak due to MachineClass rework
  2014-03-17 20:56 [Qemu-devel] small memory leak due to MachineClass rework Christian Borntraeger
@ 2014-03-17 21:25 ` Peter Maydell
  2014-03-17 21:29   ` Christian Borntraeger
  2014-03-18 14:57 ` Michael S. Tsirkin
  1 sibling, 1 reply; 6+ messages in thread
From: Peter Maydell @ 2014-03-17 21:25 UTC (permalink / raw)
  To: Christian Borntraeger
  Cc: Michael S. Tsirkin, qemu-devel@nongnu.org, Andreas Färber,
	Marcel Apfelbaum

On 17 March 2014 20:56, Christian Borntraeger <borntraeger@de.ibm.com> wrote:
> Turns out that valgrind is right. We simply forget the memory that g_strconcat has allocated.
> This fixes the small leak, but I have to cast away the constness of .name.
> Any better ideas?

It's how cpu_register() in target-arm/cpu.c does the same thing
(though we use void* rather than gpointer as the cast).
If you really dislike the const I guess you could use:
    char *name = g_strconcat(...);
    TypeInfo ti = {
          .name = name,
          [...]
    };
    [...]
    g_free(name);

thanks
-- PMM

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Qemu-devel] small memory leak due to MachineClass rework
  2014-03-17 21:25 ` Peter Maydell
@ 2014-03-17 21:29   ` Christian Borntraeger
  2014-03-17 21:38     ` Andreas Färber
  2014-03-17 21:43     ` Marcel Apfelbaum
  0 siblings, 2 replies; 6+ messages in thread
From: Christian Borntraeger @ 2014-03-17 21:29 UTC (permalink / raw)
  To: Peter Maydell
  Cc: Michael S. Tsirkin, qemu-devel@nongnu.org, Andreas Färber,
	Marcel Apfelbaum

On 17/03/14 22:25, Peter Maydell wrote:
> On 17 March 2014 20:56, Christian Borntraeger <borntraeger@de.ibm.com> wrote:
>> Turns out that valgrind is right. We simply forget the memory that g_strconcat has allocated.
>> This fixes the small leak, but I have to cast away the constness of .name.
>> Any better ideas?
> 
> It's how cpu_register() in target-arm/cpu.c does the same thing
> (though we use void* rather than gpointer as the cast).

Ok, if you dont have a problem with that approach, I can submit a proper
patch with signoff.  Any preference regarding void * vs gpointer?

Christian


> If you really dislike the const I guess you could use:
>     char *name = g_strconcat(...);
>     TypeInfo ti = {
>           .name = name,
>           [...]
>     };
>     [...]
>     g_free(name);
> 

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Qemu-devel] small memory leak due to MachineClass rework
  2014-03-17 21:29   ` Christian Borntraeger
@ 2014-03-17 21:38     ` Andreas Färber
  2014-03-17 21:43     ` Marcel Apfelbaum
  1 sibling, 0 replies; 6+ messages in thread
From: Andreas Färber @ 2014-03-17 21:38 UTC (permalink / raw)
  To: Christian Borntraeger
  Cc: Peter Maydell, Michael S. Tsirkin, qemu-devel@nongnu.org,
	Marcel Apfelbaum

Am 17.03.2014 22:29, schrieb Christian Borntraeger:
> On 17/03/14 22:25, Peter Maydell wrote:
>> On 17 March 2014 20:56, Christian Borntraeger <borntraeger@de.ibm.com> wrote:
>>> Turns out that valgrind is right. We simply forget the memory that g_strconcat has allocated.
>>> This fixes the small leak, but I have to cast away the constness of .name.
>>> Any better ideas?
>>
>> It's how cpu_register() in target-arm/cpu.c does the same thing
>> (though we use void* rather than gpointer as the cast).
> 
> Ok, if you dont have a problem with that approach, I can submit a proper
> patch with signoff.  Any preference regarding void * vs gpointer?

void *. We try to avoid g* types where possible/sensible.

Thanks for catching this!

Cheers,
Andreas

-- 
SUSE LINUX Products GmbH, Maxfeldstr. 5, 90409 Nürnberg, Germany
GF: Jeff Hawn, Jennifer Guild, Felix Imendörffer; HRB 16746 AG Nürnberg

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Qemu-devel] small memory leak due to MachineClass rework
  2014-03-17 21:29   ` Christian Borntraeger
  2014-03-17 21:38     ` Andreas Färber
@ 2014-03-17 21:43     ` Marcel Apfelbaum
  1 sibling, 0 replies; 6+ messages in thread
From: Marcel Apfelbaum @ 2014-03-17 21:43 UTC (permalink / raw)
  To: Christian Borntraeger
  Cc: Peter Maydell, Michael S. Tsirkin, qemu-devel@nongnu.org,
	Andreas Färber

On Mon, 2014-03-17 at 22:29 +0100, Christian Borntraeger wrote:
> On 17/03/14 22:25, Peter Maydell wrote:
> > On 17 March 2014 20:56, Christian Borntraeger <borntraeger@de.ibm.com> wrote:
> >> Turns out that valgrind is right. We simply forget the memory that g_strconcat has allocated.
> >> This fixes the small leak, but I have to cast away the constness of .name.
> >> Any better ideas?
> > 
> > It's how cpu_register() in target-arm/cpu.c does the same thing
> > (though we use void* rather than gpointer as the cast).
> 
> Ok, if you dont have a problem with that approach, I can submit a proper
> patch with signoff.  Any preference regarding void * vs gpointer?
Hi Cristian,

Thank you for catching this! (I also would go with void *)
Marcel

> 
> Christian
> 
> 
> > If you really dislike the const I guess you could use:
> >     char *name = g_strconcat(...);
> >     TypeInfo ti = {
> >           .name = name,
> >           [...]
> >     };
> >     [...]
> >     g_free(name);
> > 
> 
> 

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [Qemu-devel] small memory leak due to MachineClass rework
  2014-03-17 20:56 [Qemu-devel] small memory leak due to MachineClass rework Christian Borntraeger
  2014-03-17 21:25 ` Peter Maydell
@ 2014-03-18 14:57 ` Michael S. Tsirkin
  1 sibling, 0 replies; 6+ messages in thread
From: Michael S. Tsirkin @ 2014-03-18 14:57 UTC (permalink / raw)
  To: Christian Borntraeger
  Cc: qemu-devel@nongnu.org, Andreas Färber, Marcel Apfelbaum

On Mon, Mar 17, 2014 at 09:56:45PM +0100, Christian Borntraeger wrote:
> Marcel,
> 
> after 
> 
> commit 261747f176f6 (vl: Use MachineClass instead of global QEMUMachine list) valgrind complains about the following:
> 
> ==54082== 57 bytes in 3 blocks are definitely lost in loss record 365 of 729
> ==54082==    at 0x4031AFE: malloc (vg_replace_malloc.c:292)
> ==54082==    by 0x4145569: g_malloc (in /usr/lib64/libglib-2.0.so.0.3400.2)
> ==54082==    by 0x415F9E9: g_strconcat (in /usr/lib64/libglib-2.0.so.0.3400.2)
> ==54082==    by 0x80157FE7: qemu_register_machine (vl.c:1597)
> ==54082==    by 0x80208E6B: module_call_init (module.c:105)
> ==54082==    by 0x80013B91: main (vl.c:3000)
> 
> Turns out that valgrind is right. We simply forget the memory that g_strconcat has allocated.
> This fixes the small leak, but I have to cast away the constness of .name.
> Any better ideas?
> 
> 
> diff --git a/vl.c b/vl.c
> index 03488b9..b06d186 100644
> --- a/vl.c
> +++ b/vl.c
> @@ -1594,13+1594,14 @@ static void machine_class_init(ObjectClass *oc, void *data)
>  int qemu_register_machine(QEMUMachine *m)
>  {
>      TypeInfo ti = {
>          .name       = g_strconcat(m->name, TYPE_MACHINE_SUFFIX, NULL),
>          .parent     = TYPE_MACHINE,
>          .class_init = machine_class_init,
>          .class_data = (void *)m,
>      };
>  
>      type_register(&ti);
> +    g_free((gpointer) ti.name);
>  
>      return 0;
>  }


How about:

 int qemu_register_machine(QEMUMachine *m)
 {
+  char *name = g_strconcat(m->name, TYPE_MACHINE_SUFFIX, NULL);
   TypeInfo ti = {
-        .name       = g_strconcat(m->name, TYPE_MACHINE_SUFFIX, NULL),
+        .name       = name,
         .parent     = TYPE_MACHINE,
         .class_init = machine_class_init,
         .class_data = (void *)m,
     };
 
     type_register(&ti);
+    g_free(name);
 
     return 0;
 }

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2014-03-18 14:58 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-17 20:56 [Qemu-devel] small memory leak due to MachineClass rework Christian Borntraeger
2014-03-17 21:25 ` Peter Maydell
2014-03-17 21:29   ` Christian Borntraeger
2014-03-17 21:38     ` Andreas Färber
2014-03-17 21:43     ` Marcel Apfelbaum
2014-03-18 14:57 ` Michael S. Tsirkin

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).