[PATCH RESEND] drm: fix drm_local_map allocation size

Jani Nikula jani.nikula at intel.com
Wed Apr 3 02:05:02 PDT 2013


ping

On Tue, 12 Feb 2013, Jani Nikula <jani.nikula at intel.com> wrote:
> list->map is struct drm_local_map *, not struct drm_map_list *.
>
> Signed-off-by: Jani Nikula <jani.nikula at 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


More information about the dri-devel mailing list