Reviewed-by: Guchun Chen <[email protected]> Regards, Guchun
-----Original Message----- From: Zhou1, Tao <[email protected]> Sent: Tuesday, September 17, 2019 2:22 PM To: [email protected]; Chen, Guchun <[email protected]>; Zhang, Hawking <[email protected]>; Deucher, Alexander <[email protected]> Cc: Zhou1, Tao <[email protected]> Subject: [PATCH] drm/amdgpu: use GPU PAGE SHIFT for umc retired page umc retired page belongs to vram and it should be aligned to gpu page size Signed-off-by: Tao Zhou <[email protected]> --- drivers/gpu/drm/amd/amdgpu/umc_v6_1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/amd/amdgpu/umc_v6_1.c b/drivers/gpu/drm/amd/amdgpu/umc_v6_1.c index 1c0da32c1561..47c4b96b14d1 100644 --- a/drivers/gpu/drm/amd/amdgpu/umc_v6_1.c +++ b/drivers/gpu/drm/amd/amdgpu/umc_v6_1.c @@ -213,7 +213,7 @@ static void umc_v6_1_query_error_address(struct amdgpu_device *adev, == 1) { err_rec->address = err_addr; /* page frame address is saved */ - err_rec->retired_page = retired_page >> PAGE_SHIFT; + err_rec->retired_page = retired_page >> AMDGPU_GPU_PAGE_SHIFT; err_rec->ts = (uint64_t)ktime_get_real_seconds(); err_rec->err_type = AMDGPU_RAS_EEPROM_ERR_NON_RECOVERABLE; err_rec->cu = 0; -- 2.17.1 _______________________________________________ amd-gfx mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/amd-gfx
