From: Shashank Sharma <contactshashanksharma@xxxxxxxxx> This reverts commit 81af32520e7aaa337fe132f16c12ce54170187ea. This commit prevents a usermode queue client to get the shadow related information. Signed-off-by: Shashank Sharma <contactshashanksharma@xxxxxxxxx> --- drivers/gpu/drm/amd/amdgpu/gfx_v11_0.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v11_0.c b/drivers/gpu/drm/amd/amdgpu/gfx_v11_0.c index dbf3bcadee32..1f0f7ec0facc 100644 --- a/drivers/gpu/drm/amd/amdgpu/gfx_v11_0.c +++ b/drivers/gpu/drm/amd/amdgpu/gfx_v11_0.c @@ -661,12 +661,8 @@ static void gfx_v11_0_check_fw_cp_gfx_shadow(struct amdgpu_device *adev) case IP_VERSION(11, 0, 3): if ((adev->gfx.me_fw_version >= 1505) && (adev->gfx.pfp_fw_version >= 1600) && - (adev->gfx.mec_fw_version >= 512)) { - if (amdgpu_sriov_vf(adev)) - adev->gfx.cp_gfx_shadow = true; - else - adev->gfx.cp_gfx_shadow = false; - } + (adev->gfx.mec_fw_version >= 512)) + adev->gfx.cp_gfx_shadow = true; break; default: adev->gfx.cp_gfx_shadow = false; -- 2.45.1