Commit 1af69d30 authored by Oded Gabbay's avatar Oded Gabbay

habanalabs: make the reset code more consistent

In the hl_device_reset we ask about the hard_reset argument when we want to
differentiate between soft and hard reset, except for three places where
we use "from_hard_reset_thread". Replace one of those locations with the
hard_reset argument as it is guaranteed that if we reached to that
line in the code during hard_reset, it is from a kernel thread.
Signed-off-by: default avatarOded Gabbay <oded.gabbay@gmail.com>
Reviewed-by: default avatarTomer Tayar <ttayar@habana.ai>
parent 52c01b01
...@@ -891,7 +891,7 @@ int hl_device_reset(struct hl_device *hdev, bool hard_reset, ...@@ -891,7 +891,7 @@ int hl_device_reset(struct hl_device *hdev, bool hard_reset,
* can't really exit until all its CSs are done, which is what we * can't really exit until all its CSs are done, which is what we
* do in cs rollback * do in cs rollback
*/ */
if (from_hard_reset_thread) if (hard_reset)
device_kill_open_processes(hdev); device_kill_open_processes(hdev);
/* Release kernel context */ /* Release kernel context */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment