All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/7] Fix some memleaks caused by ptimer_init
@ 2020-12-17 11:31 Gan Qixin
  2021-01-08 11:42 ` Peter Maydell
  0 siblings, 1 reply; 3+ messages in thread
From: Gan Qixin @ 2020-12-17 11:31 UTC (permalink / raw)
  To: qemu-devel, qemu-trivial
  Cc: peter.maydell, zhang.zhanghailiang, i.mitsyanko, sundeep.lkml,
	b.galvani, jan.kiszka, antonynpavlov, Gan Qixin, kuhn.chenqun

v1->v2:
Changes suggested by Peter Maydell:
    Delete the modification of unrelated whitespace.

Gan Qixin (7):
  allwinner-a10-pit: Use ptimer_free() in the finalize function to avoid
    memleaks
  digic-timer: Use ptimer_free() in the finalize function to avoid
    memleaks
  exynos4210_mct: Use ptimer_free() in the finalize function to avoid
    memleaks
  exynos4210_pwm: Use ptimer_free() in the finalize function to avoid
    memleaks
  exynos4210_rtc: Use ptimer_free() in the finalize function to avoid
    memleaks
  mss-timer: Use ptimer_free() in the finalize function to avoid
    memleaks
  musicpal: Use ptimer_free() in the finalize function to avoid memleaks

 hw/arm/musicpal.c            | 12 ++++++++++++
 hw/rtc/exynos4210_rtc.c      |  9 +++++++++
 hw/timer/allwinner-a10-pit.c | 11 +++++++++++
 hw/timer/digic-timer.c       |  8 ++++++++
 hw/timer/exynos4210_mct.c    | 14 ++++++++++++++
 hw/timer/exynos4210_pwm.c    | 11 +++++++++++
 hw/timer/mss-timer.c         | 13 +++++++++++++
 7 files changed, 78 insertions(+)

-- 
2.23.0



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

* Re: [PATCH v2 0/7] Fix some memleaks caused by ptimer_init
  2020-12-17 11:31 [PATCH v2 0/7] Fix some memleaks caused by ptimer_init Gan Qixin
@ 2021-01-08 11:42 ` Peter Maydell
  2021-01-11  2:25   ` ganqixin
  0 siblings, 1 reply; 3+ messages in thread
From: Peter Maydell @ 2021-01-08 11:42 UTC (permalink / raw)
  To: Gan Qixin
  Cc: zhanghailiang, QEMU Trivial, QEMU Developers, sundeep subbaraya,
	Beniamino Galvani, Igor Mitsyanko, Jan Kiszka, Antony Pavlov,
	Chenqun (kuhn)

On Thu, 17 Dec 2020 at 11:32, Gan Qixin <ganqixin@huawei.com> wrote:
>
> v1->v2:
> Changes suggested by Peter Maydell:
>     Delete the modification of unrelated whitespace.
>
> Gan Qixin (7):
>   allwinner-a10-pit: Use ptimer_free() in the finalize function to avoid
>     memleaks
>   digic-timer: Use ptimer_free() in the finalize function to avoid
>     memleaks
>   exynos4210_mct: Use ptimer_free() in the finalize function to avoid
>     memleaks
>   exynos4210_pwm: Use ptimer_free() in the finalize function to avoid
>     memleaks
>   exynos4210_rtc: Use ptimer_free() in the finalize function to avoid
>     memleaks
>   mss-timer: Use ptimer_free() in the finalize function to avoid
>     memleaks
>   musicpal: Use ptimer_free() in the finalize function to avoid memleaks

Applied to target-arm.next, thanks.

PS: something odd happened with the threading of this series --
the patch emails weren't follow-ups to the cover letter --
so the automated tools like patchew got confused and thought
the series was empty:
https://patchew.org/QEMU/20201217113137.121607-1-ganqixin@huawei.com/

You might want to look into fixing that for next time you send
a patchset.

thanks
-- PMM


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

* RE: [PATCH v2 0/7] Fix some memleaks caused by ptimer_init
  2021-01-08 11:42 ` Peter Maydell
@ 2021-01-11  2:25   ` ganqixin
  0 siblings, 0 replies; 3+ messages in thread
From: ganqixin @ 2021-01-11  2:25 UTC (permalink / raw)
  To: Peter Maydell
  Cc: QEMU Trivial, Chenqun (kuhn), QEMU Developers, Zhanghailiang

> -----Original Message-----
> From: Peter Maydell [mailto:peter.maydell@linaro.org]
> Sent: Friday, January 8, 2021 7:43 PM
> To: ganqixin <ganqixin@huawei.com>
> Cc: QEMU Developers <qemu-devel@nongnu.org>; QEMU Trivial
> <qemu-trivial@nongnu.org>; Beniamino Galvani <b.galvani@gmail.com>;
> Antony Pavlov <antonynpavlov@gmail.com>; Igor Mitsyanko
> <i.mitsyanko@gmail.com>; sundeep subbaraya <sundeep.lkml@gmail.com>;
> Jan Kiszka <jan.kiszka@web.de>; Chenqun (kuhn)
> <kuhn.chenqun@huawei.com>; Zhanghailiang
> <zhang.zhanghailiang@huawei.com>
> Subject: Re: [PATCH v2 0/7] Fix some memleaks caused by ptimer_init
> 
> On Thu, 17 Dec 2020 at 11:32, Gan Qixin <ganqixin@huawei.com> wrote:
> >
> > v1->v2:
> > Changes suggested by Peter Maydell:
> >     Delete the modification of unrelated whitespace.
> >
> > Gan Qixin (7):
> >   allwinner-a10-pit: Use ptimer_free() in the finalize function to avoid
> >     memleaks
> >   digic-timer: Use ptimer_free() in the finalize function to avoid
> >     memleaks
> >   exynos4210_mct: Use ptimer_free() in the finalize function to avoid
> >     memleaks
> >   exynos4210_pwm: Use ptimer_free() in the finalize function to avoid
> >     memleaks
> >   exynos4210_rtc: Use ptimer_free() in the finalize function to avoid
> >     memleaks
> >   mss-timer: Use ptimer_free() in the finalize function to avoid
> >     memleaks
> >   musicpal: Use ptimer_free() in the finalize function to avoid
> > memleaks
> 
> Applied to target-arm.next, thanks.
> 
> PS: something odd happened with the threading of this series -- the patch
> emails weren't follow-ups to the cover letter -- so the automated tools like
> patchew got confused and thought the series was empty:
> https://patchew.org/QEMU/20201217113137.121607-1-ganqixin@huawei.co
> m/
> 
> You might want to look into fixing that for next time you send a patchset.
> 

Thanks for telling me the error that occurred when receiving this patch email. I will fix it.

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

end of thread, other threads:[~2021-01-11  2:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-17 11:31 [PATCH v2 0/7] Fix some memleaks caused by ptimer_init Gan Qixin
2021-01-08 11:42 ` Peter Maydell
2021-01-11  2:25   ` ganqixin

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.