]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
drm/amdgpu: correct the gpu reset handling for job != NULL case
authorEvan Quan <evan.quan@amd.com>
Thu, 15 Oct 2020 06:57:46 +0000 (14:57 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 5 Nov 2020 10:43:33 +0000 (11:43 +0100)
commit 207ac684792560acdb9e06f9d707ebf63c84b0e0 upstream.

Current code wrongly treat all cases as job == NULL.

Signed-off-by: Evan Quan <evan.quan@amd.com>
Reviewed-and-tested-by: Jane Jian <Jane.Jian@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Cc: stable@vger.kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/gpu/drm/amd/amdgpu/amdgpu_device.c

index 4105fbf571674a533727330e694958ef7bb4b2c6..29141bff4b5724b6d08b52dac033008d6ee8652b 100644 (file)
@@ -3890,7 +3890,7 @@ retry:    /* Rest of adevs pre asic reset from XGMI hive. */
 
                amdgpu_device_lock_adev(tmp_adev, false);
                r = amdgpu_device_pre_asic_reset(tmp_adev,
-                                                NULL,
+                                                (tmp_adev == adev) ? job : NULL,
                                                 &need_full_reset);
                /*TODO Should we stop ?*/
                if (r) {