All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH RESEND] drm: fix drm_local_map allocation size
@ 2013-02-12  8:23 Jani Nikula
  2013-04-03  9:05 ` Jani Nikula
  0 siblings, 1 reply; 2+ messages in thread
From: Jani Nikula @ 2013-02-12  8:23 UTC (permalink / raw)
  To: dri-devel; +Cc: jani.nikula

list->map is struct drm_local_map *, not struct drm_map_list *.

Signed-off-by: Jani Nikula <jani.nikula@intel.com>

---

Found this small snippet laying around, I guess it fell between the cracks.
---
 drivers/gpu/drm/drm_gem.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/drm_gem.c b/drivers/gpu/drm/drm_gem.c
index 24efae4..6337edd 100644
--- a/drivers/gpu/drm/drm_gem.c
+++ b/drivers/gpu/drm/drm_gem.c
@@ -343,7 +343,7 @@ drm_gem_create_mmap_offset(struct drm_gem_object *obj)
 
 	/* Set the object up for mmap'ing */
 	list = &obj->map_list;
-	list->map = kzalloc(sizeof(struct drm_map_list), GFP_KERNEL);
+	list->map = kzalloc(sizeof(*list->map), GFP_KERNEL);
 	if (!list->map)
 		return -ENOMEM;
 
-- 
1.7.9.5

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

* Re: [PATCH RESEND] drm: fix drm_local_map allocation size
  2013-02-12  8:23 [PATCH RESEND] drm: fix drm_local_map allocation size Jani Nikula
@ 2013-04-03  9:05 ` Jani Nikula
  0 siblings, 0 replies; 2+ messages in thread
From: Jani Nikula @ 2013-04-03  9:05 UTC (permalink / raw)
  To: dri-devel


ping

On Tue, 12 Feb 2013, Jani Nikula <jani.nikula@intel.com> wrote:
> list->map is struct drm_local_map *, not struct drm_map_list *.
>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
>
> ---
>
> Found this small snippet laying around, I guess it fell between the cracks.
> ---
>  drivers/gpu/drm/drm_gem.c |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/drm_gem.c b/drivers/gpu/drm/drm_gem.c
> index 24efae4..6337edd 100644
> --- a/drivers/gpu/drm/drm_gem.c
> +++ b/drivers/gpu/drm/drm_gem.c
> @@ -343,7 +343,7 @@ drm_gem_create_mmap_offset(struct drm_gem_object *obj)
>  
>  	/* Set the object up for mmap'ing */
>  	list = &obj->map_list;
> -	list->map = kzalloc(sizeof(struct drm_map_list), GFP_KERNEL);
> +	list->map = kzalloc(sizeof(*list->map), GFP_KERNEL);
>  	if (!list->map)
>  		return -ENOMEM;
>  
> -- 
> 1.7.9.5

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

end of thread, other threads:[~2013-04-03  9:04 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-12  8:23 [PATCH RESEND] drm: fix drm_local_map allocation size Jani Nikula
2013-04-03  9:05 ` Jani Nikula

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.