From: Eric Engestrom <eric.engestrom@imgtec.com>
To: Emil Velikov <emil.l.velikov@gmail.com>
Cc: Seung-Woo Kim <sw0312.kim@samsung.com>,
Rob Clark <robclark@freedesktop.org>,
ML dri-devel <dri-devel@lists.freedesktop.org>
Subject: Re: [RESEND][PATCH] libkms/exynos: fix memory leak in error path
Date: Wed, 14 Dec 2016 13:12:22 +0000 [thread overview]
Message-ID: <20161214131222.GI29253@imgtec.com> (raw)
In-Reply-To: <CACvgo52gF-wWQxOWRufccB9Ku-=0E9v-_yfh0CoXQY3ofXuiPQ@mail.gmail.com>
On Wednesday, 2016-12-14 12:21:55 +0000, Emil Velikov wrote:
> On 14 December 2016 at 12:07, Eric Engestrom <eric.engestrom@imgtec.com> wrote:
> > On Wednesday, 2016-12-14 17:16:30 +0900, Seung-Woo Kim wrote:
> >> This patch fixes memory leak in error path of exynos_bo_create().
> >
> > Indeed, thanks!
> > Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
> >
> >>
> >> Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
> >> ---
> >> libkms/exynos.c | 3 ++-
> >> 1 files changed, 2 insertions(+), 1 deletions(-)
> >>
> >> diff --git a/libkms/exynos.c b/libkms/exynos.c
> >> index 5de2e5a..0e97fb5 100644
> >> --- a/libkms/exynos.c
> >> +++ b/libkms/exynos.c
> >> @@ -88,7 +88,8 @@ exynos_bo_create(struct kms_driver *kms,
> >> pitch = (pitch + 512 - 1) & ~(512 - 1);
> >> size = pitch * ((height + 4 - 1) & ~(4 - 1));
> >> } else {
> >> - return -EINVAL;
> >> + ret = -EINVAL;
> >> + goto err_free;
> >> }
> >>
> >> memset(&arg, 0, sizeof(arg));
> >> --
> >> 1.7.4.1
> >>
> >
> > However, I feel like a cleaner fix might be to simply move the
> > allocation to where it's used and remove the now-unnecessary
> > error path, ie.:
> >
> > ----8<----
> > diff --git a/libkms/exynos.c b/libkms/exynos.c
> > index 5de2e5a..e2c1c9f 100644
> > --- a/libkms/exynos.c
> > +++ b/libkms/exynos.c
> > @@ -76,10 +76,6 @@ exynos_bo_create(struct kms_driver *kms,
> > }
> > }
> >
> > - bo = calloc(1, sizeof(*bo));
> > - if (!bo)
> > - return -ENOMEM;
> > -
> > if (type == KMS_BO_TYPE_CURSOR_64X64_A8R8G8B8) {
> > pitch = 64 * 4;
> > size = 64 * 64 * 4;
> > @@ -96,7 +92,11 @@ exynos_bo_create(struct kms_driver *kms,
> >
> > ret = drmCommandWriteRead(kms->fd, DRM_EXYNOS_GEM_CREATE, &arg, sizeof(arg));
> > if (ret)
> > - goto err_free;
> > + return ret;
> > +
> > + bo = calloc(1, sizeof(*bo));
> > + if (!bo)
> Here we're missing the drmIoctl(... DRM_IOCTL_GEM_CLOSE ...)
You're right... I'm not actually improving anything with my suggestion.
>
> Another solution is to move size/pitch calculation before the calloc.
> Not sure which one will be better though.
Let's just land Seung-Woo's fix?
We can always refactor later :)
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
next prev parent reply other threads:[~2016-12-14 13:12 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-11-14 5:31 [PATCH libdrm] libkms/exynos: fix memory leak in error path Seung-Woo Kim
2016-12-14 8:16 ` [RESEND][PATCH] " Seung-Woo Kim
2016-12-14 12:07 ` Eric Engestrom
2016-12-14 12:21 ` Emil Velikov
2016-12-14 13:12 ` Eric Engestrom [this message]
2016-12-14 17:12 ` Emil Velikov
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=20161214131222.GI29253@imgtec.com \
--to=eric.engestrom@imgtec.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=emil.l.velikov@gmail.com \
--cc=robclark@freedesktop.org \
--cc=sw0312.kim@samsung.com \
/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.