forked from Minki/linux
habanalabs: refactor reset log message
Reset to the device is not necessarily due to an error, so print it as info instead of error. In addition, print the type of reset we are doing: - reset of the entire device (aka hard reset) - reset of the device after user have released it (less than hard reset) - lighter reset of an inference device (aka soft reset) Signed-off-by: Oded Gabbay <ogabbay@kernel.org>
This commit is contained in:
parent
a00f1f571e
commit
1282dbbd29
@ -1018,7 +1018,14 @@ do_reset:
|
||||
|
||||
take_release_locks(hdev);
|
||||
|
||||
dev_err(hdev->dev, "Going to RESET device!\n");
|
||||
if (hard_reset)
|
||||
dev_info(hdev->dev, "Going to reset device\n");
|
||||
else if (flags & HL_RESET_DEVICE_RELEASE)
|
||||
dev_info(hdev->dev,
|
||||
"Going to reset device after it was released by user\n");
|
||||
else
|
||||
dev_info(hdev->dev,
|
||||
"Going to reset compute engines of inference device\n");
|
||||
}
|
||||
|
||||
again:
|
||||
|
Loading…
Reference in New Issue
Block a user