All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Marc-André Lureau" <marcandre.lureau@gmail.com>
To: Li Qiang <liq3ea@gmail.com>, kraxel@redhat.com, qemu-devel@nongnu.org
Cc: Li Qiang <liqiang6-s@360.cn>
Subject: Re: [Qemu-devel] [PATCH] audio: ac97: add exit function
Date: Tue, 13 Dec 2016 17:43:53 +0000	[thread overview]
Message-ID: <CAJ+F1C+NpMcr+Kx9uOYbmjrPf2bQ5LBh+qVosG1OWMVi6wqJgg@mail.gmail.com> (raw)
In-Reply-To: <CAKXe6S+BB_72vZLWDhJk65Qm1Uh-2COKEEwM9YyaCF4aL1x1nA@mail.gmail.com>

Hi

On Tue, Dec 13, 2016 at 11:56 AM Li Qiang <liq3ea@gmail.com> wrote:

> Ping!
>
> 2016-11-29 18:33 GMT+08:00 Li Qiang <liq3ea@gmail.com>:
>
> > From: Li Qiang <liqiang6-s@360.cn>
> >
> > Currently the ac97 device emulation doesn't have a exit function,
> > hot unplug this device will leak some leak. Add a exit function to
> > avoid this.
> >
> > Signed-off-by: Li Qiang <liqiang6-s@360.cn>
> > ---
> >  hw/audio/ac97.c | 8 ++++++++
> >  1 file changed, 8 insertions(+)
> >
> > diff --git a/hw/audio/ac97.c b/hw/audio/ac97.c
> > index cbd959e..2faed35 100644
> > --- a/hw/audio/ac97.c
> > +++ b/hw/audio/ac97.c
> > @@ -1387,6 +1387,13 @@ static void ac97_realize(PCIDevice *dev, Error
> > **errp)
> >      ac97_on_reset (&s->dev.qdev);
> >  }
> >
> > +static void ac97_exit(PCIDevice *dev)
> > +{
> > +    AC97LinkState *s = DO_UPCAST(AC97LinkState, dev, dev);
> > +
> > +    AUD_remove_card(&s->card);
> > +}
> > +
>

Looks good, but even better is to close the streams

 diff --git a/hw/audio/ac97.c b/hw/audio/ac97.c
index 2faed35627..3dcfe9d67c 100644
--- a/hw/audio/ac97.c
+++ b/hw/audio/ac97.c
@@ -1391,6 +1391,9 @@ static void ac97_exit(PCIDevice *dev)
 {
     AC97LinkState *s = DO_UPCAST(AC97LinkState, dev, dev);

+    AUD_close_in (&s->card, s->voice_pi);
+    AUD_close_out (&s->card, s->voice_po);
+    AUD_close_in (&s->card, s->voice_mc);
     AUD_remove_card(&s->card);
 }

We could also investigate if AUD_remove_card could do that instead.

>  static int ac97_init (PCIBus *bus)
> >  {
> >      pci_create_simple (bus, -1, "AC97");
> > @@ -1404,6 +1411,7 @@ static void ac97_class_init (ObjectClass *klass,
> > void *data)
> >      PCIDeviceClass *k = PCI_DEVICE_CLASS (klass);
> >
> >      k->realize = ac97_realize;
> > +    k->exit = ac97_exit;
> >      k->vendor_id = PCI_VENDOR_ID_INTEL;
> >      k->device_id = PCI_DEVICE_ID_INTEL_82801AA_5;
> >      k->revision = 0x01;
> > --
> > 1.8.3.1
> >
> >
>
-- 
Marc-André Lureau

      reply	other threads:[~2016-12-13 17:45 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-11-29 10:33 [Qemu-devel] [PATCH] audio: ac97: add exit function Li Qiang
2016-11-30  0:47 ` Jonathan Neuschäfer
2016-11-30  1:39   ` Li Qiang
2016-12-13  8:54 ` Li Qiang
2016-12-13 17:43   ` Marc-André Lureau [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=CAJ+F1C+NpMcr+Kx9uOYbmjrPf2bQ5LBh+qVosG1OWMVi6wqJgg@mail.gmail.com \
    --to=marcandre.lureau@gmail.com \
    --cc=kraxel@redhat.com \
    --cc=liq3ea@gmail.com \
    --cc=liqiang6-s@360.cn \
    --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 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.