On Mon, Jan 9, 2012 at 7:44 AM, Dan Carpenter <[email protected]> wrote:
> "bo_va" is dereferenced in the error message.
>
> Signed-off-by: Dan Carpenter <[email protected]>

Reviewed-by: Alex Deucher <[email protected]>

>
> diff --git a/drivers/gpu/drm/radeon/radeon_gart.c 
> b/drivers/gpu/drm/radeon/radeon_gart.c
> index 3ef58ca..2944c78 100644
> --- a/drivers/gpu/drm/radeon/radeon_gart.c
> +++ b/drivers/gpu/drm/radeon/radeon_gart.c
> @@ -486,10 +486,10 @@ int radeon_vm_bo_add(struct radeon_device *rdev,
>                }
>                if (bo_va->soffset >= tmp->soffset && bo_va->soffset < 
> tmp->eoffset) {
>                        /* bo and tmp overlap, invalid offset */
> -                       kfree(bo_va);
>                        dev_err(rdev->dev, "bo %p va 0x%08X conflict with (bo 
> %p 0x%08X 0x%08X)\n",
>                                bo, (unsigned)bo_va->soffset, tmp->bo,
>                                (unsigned)tmp->soffset, 
> (unsigned)tmp->eoffset);
> +                       kfree(bo_va);
>                        mutex_unlock(&vm->mutex);
>                        return -EINVAL;
>                }
> _______________________________________________
> dri-devel mailing list
> [email protected]
> http://lists.freedesktop.org/mailman/listinfo/dri-devel
_______________________________________________
dri-devel mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/dri-devel

Reply via email to