Commit cab8e3e2 authored by Oded Gabbay's avatar Oded Gabbay

habanalabs: improve error messages

This patch improves two error messages to help the user to
better understand what error occurred.
Signed-off-by: default avatarOded Gabbay <oded.gabbay@gmail.com>
parent aa957088
...@@ -261,7 +261,8 @@ static void cs_timedout(struct work_struct *work) ...@@ -261,7 +261,8 @@ static void cs_timedout(struct work_struct *work)
ctx_asid = cs->ctx->asid; ctx_asid = cs->ctx->asid;
/* TODO: add information about last signaled seq and last emitted seq */ /* TODO: add information about last signaled seq and last emitted seq */
dev_err(hdev->dev, "CS %d.%llu got stuck!\n", ctx_asid, cs->sequence); dev_err(hdev->dev, "User %d command submission %llu got stuck!\n",
ctx_asid, cs->sequence);
cs_put(cs); cs_put(cs);
......
...@@ -109,7 +109,7 @@ static int alloc_device_memory(struct hl_ctx *ctx, struct hl_mem_in *args, ...@@ -109,7 +109,7 @@ static int alloc_device_memory(struct hl_ctx *ctx, struct hl_mem_in *args,
page_size); page_size);
if (!phys_pg_pack->pages[i]) { if (!phys_pg_pack->pages[i]) {
dev_err(hdev->dev, dev_err(hdev->dev,
"ioctl failed to allocate page\n"); "Failed to allocate device memory (out of memory)\n");
rc = -ENOMEM; rc = -ENOMEM;
goto page_err; goto page_err;
} }
......
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