[PATCH] drivers: gpu: drm: i915: Replaced calls to kmalloc & memcpy with kmemdup
Andru Gheorghiu
gheorghiuandru at gmail.com
Mon Mar 11 13:31:15 PDT 2013
You are right. I shall resend :)
Thanks!
On Mon, Mar 11, 2013 at 10:25 PM, Josh Triplett <josh at joshtriplett.org>wrote:
> On Mon, Mar 11, 2013 at 09:30:40PM +0200, Alexandru Gheorghiu wrote:
> > Replaced calls to kmalloc followed by memcpy with a single call to
> kmemdup.
> > This patch was found using coccinelle.
> >
> > Signed-off-by: Alexandru Gheorghiu <gheorghiuandru at gmail.com>
> > ---
> > drivers/gpu/drm/i915/intel_dp.c | 3 +--
> > 1 file changed, 1 insertion(+), 2 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/i915/intel_dp.c
> b/drivers/gpu/drm/i915/intel_dp.c
> > index f61cb79..a3fdd65 100644
> > --- a/drivers/gpu/drm/i915/intel_dp.c
> > +++ b/drivers/gpu/drm/i915/intel_dp.c
> > @@ -2335,11 +2335,10 @@ intel_dp_get_edid(struct drm_connector
> *connector, struct i2c_adapter *adapter)
> > return NULL;
> >
> > size = (intel_connector->edid->extensions + 1) *
> EDID_LENGTH;
> > - edid = kmalloc(size, GFP_KERNEL);
> > + edid = kmemdup(intel_connector->edid, size, GFP_KERNEL);
> > if (!edid)
> > return NULL;
> >
> > - memcpy(edid, intel_connector->edid, size);
> > return edid;
> > }
>
> With this change, the conditional no longer makes sense; this should
> just "return kmemdup(...);".
>
> That suggests an obvious further cleanup that coccinelle could easily
> handle:
>
> if (!foo)
> return NULL;
> return foo;
>
> should become just "return foo;". And you might then want to check for
> variables used *only* to capture a return value and immediately
> returned, and eliminate them.
>
> - Josh Triplett
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20130311/c7c8a1a0/attachment.html>
More information about the dri-devel
mailing list