qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH 1/3] ipmi_bmc_sim: Free timer


From: Corey Minyard
Subject: Re: [Qemu-devel] [PATCH 1/3] ipmi_bmc_sim: Free timer
Date: Thu, 21 Jul 2016 10:12:17 -0500
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.8.0

On 07/21/2016 10:05 AM, Corey Minyard wrote:
On 07/21/2016 09:49 AM, Marc-André Lureau wrote:
Hi

----- Original Message -----
From: Corey Minyard <address@hidden>

Add an unrealize function to free the timer allocated in the
realize function.

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

diff --git a/hw/ipmi/ipmi_bmc_sim.c b/hw/ipmi/ipmi_bmc_sim.c
index dc9c14c..c83adf8 100644
--- a/hw/ipmi/ipmi_bmc_sim.c
+++ b/hw/ipmi/ipmi_bmc_sim.c
@@ -1786,12 +1786,22 @@ static void ipmi_sim_realize(DeviceState *dev, Error
**errp)
      vmstate_register(NULL, 0, &vmstate_ipmi_sim, ibs);
  }
  +static void ipmi_sim_unrealize(DeviceState *dev, Error **errp)
+{
+    IPMIBmc *b = IPMI_BMC(dev);
+    IPMIBmcSim *ibs = IPMI_BMC_SIMULATOR(b);
+
+    timer_del(ibs->timer);
+    timer_free(ibs->timer);
+}
+
I think we may want to unrealize more here:

+static void ipmi_sim_unrealize(DeviceState *dev, Error **errp)
+{
+    IPMIBmcSim *ibs = IPMI_BMC_SIMULATOR(dev);
+    IPMIRcvBufEntry *msg, *tmp;
+
+    vmstate_unregister(NULL, &vmstate_ipmi_sim, ibs);

Isn't this already done automatically in device_set_realized()?

Never mind, I misunderstood that code.

-corey


+    timer_del(ibs->timer);
+    timer_free(ibs->timer);
+    QTAILQ_FOREACH_SAFE(msg, &ibs->rcvbufs, entry, tmp) {
+        QTAILQ_REMOVE(&ibs->rcvbufs, msg, entry);
+        g_free(msg);
+    }
+    qemu_mutex_destroy(&ibs->lock);

That mutex should probably go away, it was a vestige of
something else that is no longer there.

Thanks,

-corey

  static void ipmi_sim_class_init(ObjectClass *oc, void *data)
  {
      DeviceClass *dc = DEVICE_CLASS(oc);
      IPMIBmcClass *bk = IPMI_BMC_CLASS(oc);
        dc->realize = ipmi_sim_realize;
+    dc->unrealize = ipmi_sim_unrealize;
      bk->handle_command = ipmi_sim_handle_command;
  }
  --
2.7.4







reply via email to

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