Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e400b9ed authored by Jordan Crouse's avatar Jordan Crouse Committed by Rob Clark
Browse files

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: default avatarJordan Crouse <jcrouse@codeaurora.org>
Signed-off-by: default avatarRob Clark <robdclark@gmail.com>
parent d135c7eb
Loading
Loading
Loading
Loading
+4 −1
Original line number Original line Diff line number Diff line
@@ -116,7 +116,10 @@ static int a6xx_crashdumper_init(struct msm_gpu *gpu,
		SZ_1M, MSM_BO_UNCACHED, gpu->aspace,
		SZ_1M, MSM_BO_UNCACHED, gpu->aspace,
		&dumper->bo, &dumper->iova);
		&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,
static int a6xx_crashdumper_run(struct msm_gpu *gpu,