qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 29/37] ipmi: free extern timer


From: Corey Minyard
Subject: Re: [Qemu-devel] [PATCH 29/37] ipmi: free extern timer
Date: Thu, 21 Jul 2016 08:05:49 -0500
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.8.0

I believe this is correct:

Reviewed-by: Corey Minyard <address@hidden>

I looked around at other devices with timers, I found several (two watchdogs, and ipmi_bmc_sim.c, for instance) that allocate the timer in the realize function but don't deallocate it in the unrealize function. Do those need to be fixed, too?

-corey


On 07/19/2016 03:54 AM, address@hidden wrote:
From: Marc-André Lureau <address@hidden>

Free the timer allocated during instance init.

Signed-off-by: Marc-André Lureau <address@hidden>
---
  hw/ipmi/ipmi_bmc_extern.c | 9 +++++++++
  1 file changed, 9 insertions(+)

diff --git a/hw/ipmi/ipmi_bmc_extern.c b/hw/ipmi/ipmi_bmc_extern.c
index 157879e..5b73983 100644
--- a/hw/ipmi/ipmi_bmc_extern.c
+++ b/hw/ipmi/ipmi_bmc_extern.c
@@ -487,6 +487,14 @@ static void ipmi_bmc_extern_init(Object *obj)
      vmstate_register(NULL, 0, &vmstate_ipmi_bmc_extern, ibe);
  }
+static void ipmi_bmc_extern_finalize(Object *obj)
+{
+    IPMIBmcExtern *ibe = IPMI_BMC_EXTERN(obj);
+
+    timer_del(ibe->extern_timer);
+    timer_free(ibe->extern_timer);
+}
+
  static Property ipmi_bmc_extern_properties[] = {
      DEFINE_PROP_CHR("chardev", IPMIBmcExtern, chr),
      DEFINE_PROP_END_OF_LIST(),
@@ -508,6 +516,7 @@ static const TypeInfo ipmi_bmc_extern_type = {
      .parent        = TYPE_IPMI_BMC,
      .instance_size = sizeof(IPMIBmcExtern),
      .instance_init = ipmi_bmc_extern_init,
+    .instance_finalize = ipmi_bmc_extern_finalize,
      .class_init    = ipmi_bmc_extern_class_init,
   };




reply via email to

[Prev in Thread] Current Thread [Next in Thread]