habanalabs: clear in_compute_reset when escalating to hard reset
authorTomer Tayar <ttayar@habana.ai>
Tue, 17 Jan 2023 17:45:24 +0000 (19:45 +0200)
committerOded Gabbay <ogabbay@kernel.org>
Thu, 26 Jan 2023 09:52:14 +0000 (11:52 +0200)
If resetting device upon release while the release watchdog work is
scheduled, the compute reset is replaced with hard reset.
In this case, need to clear the in_compute_reset indication in the
device reset information structure.

Signed-off-by: Tomer Tayar <ttayar@habana.ai>
Reviewed-by: Oded Gabbay <ogabbay@kernel.org>
Signed-off-by: Oded Gabbay <ogabbay@kernel.org>
drivers/accel/habanalabs/common/device.c

index edeec35fd9c6c2487eadac1357f5318755851bfb..9933e5858a36330c172a89d39bf3134efb1c80a5 100644 (file)
@@ -1514,6 +1514,7 @@ do_reset:
                                                &hdev->device_release_watchdog_work.reset_work);
 
                        if (from_dev_release) {
+                               hdev->reset_info.in_compute_reset = 0;
                                flags |= HL_DRV_RESET_HARD;
                                flags &= ~HL_DRV_RESET_DEV_RELEASE;
                                hard_reset = true;