]> git.baikalelectronics.ru Git - kernel.git/commitdiff
habanalabs: print all CB handles as hex numbers
authorDotan Barak <dbarak@habana.ai>
Tue, 28 Apr 2020 05:43:19 +0000 (08:43 +0300)
committerOded Gabbay <oded.gabbay@gmail.com>
Tue, 19 May 2020 11:48:41 +0000 (14:48 +0300)
Make all the CB handles printed in the same way and not some as decimal and
some as hex numbers.

Signed-off-by: Dotan Barak <dbarak@habana.ai>
Reviewed-by: Oded Gabbay <oded.gabbay@gmail.com>
Signed-off-by: Oded Gabbay <oded.gabbay@gmail.com>
drivers/misc/habanalabs/command_buffer.c

index 6cb92efce4d94a5ccdf65a4920c68ff5c508459c..02d13f71b1df009f5cbee1de58eb1e4d0f81c77f 100644 (file)
@@ -288,7 +288,7 @@ int hl_cb_mmap(struct hl_fpriv *hpriv, struct vm_area_struct *vma)
        cb = hl_cb_get(hdev, &hpriv->cb_mgr, handle);
        if (!cb) {
                dev_err(hdev->dev,
-                       "CB mmap failed, no match to handle %d\n", handle);
+                       "CB mmap failed, no match to handle 0x%x\n", handle);
                return -EINVAL;
        }
 
@@ -357,7 +357,7 @@ struct hl_cb *hl_cb_get(struct hl_device *hdev, struct hl_cb_mgr *mgr,
        if (!cb) {
                spin_unlock(&mgr->cb_lock);
                dev_warn(hdev->dev,
-                       "CB get failed, no match to handle %d\n", handle);
+                       "CB get failed, no match to handle 0x%x\n", handle);
                return NULL;
        }