mirror of https://gitee.com/openkylin/linux.git
drm/msm/a6xx: Add a name for the crashdumper buffer
Add a buffer object name for the a6xx crashdumper so it can be seen with the changes introduced by 7799a98edd ("drm/msm: Add a name field for gem objects"). Signed-off-by: Jordan Crouse <jcrouse@codeaurora.org> Signed-off-by: Rob Clark <robdclark@gmail.com>
This commit is contained in:
parent
d135c7ebb7
commit
e400b9edb0
|
@ -116,7 +116,10 @@ static int a6xx_crashdumper_init(struct msm_gpu *gpu,
|
|||
SZ_1M, MSM_BO_UNCACHED, gpu->aspace,
|
||||
&dumper->bo, &dumper->iova);
|
||||
|
||||
return IS_ERR(dumper->ptr) ? PTR_ERR(dumper->ptr) : 0;
|
||||
if (!IS_ERR(dumper->ptr))
|
||||
msm_gem_object_set_name(dumper->bo, "crashdump");
|
||||
|
||||
return PTR_ERR_OR_ZERO(dumper->ptr);
|
||||
}
|
||||
|
||||
static int a6xx_crashdumper_run(struct msm_gpu *gpu,
|
||||
|
|
Loading…
Reference in New Issue