diff options
author | Oded Gabbay <oded.gabbay@gmail.com> | 2020-09-23 14:07:32 +0300 |
---|---|---|
committer | Oded Gabbay <oded.gabbay@gmail.com> | 2020-09-25 14:44:20 +0300 |
commit | fc6121e961cba2e4790493f656b7066e250f9521 (patch) | |
tree | 8d0e4a41593bb65bce76116cd58f1cb601cfffa9 | |
parent | 9eb29f2ed95edda511ce28651b1d7cdef3614c12 (diff) | |
download | linux-fc6121e961cba2e4790493f656b7066e250f9521.tar.bz2 |
habanalabs: correct an error message
We don't try to allocate huge pages here so remove the huge word.
Reviewed-by: Tomer Tayar <ttayar@habana.ai>
Signed-off-by: Oded Gabbay <oded.gabbay@gmail.com>
-rw-r--r-- | drivers/misc/habanalabs/common/memory.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/misc/habanalabs/common/memory.c b/drivers/misc/habanalabs/common/memory.c index 3324332811bc..84227819e4d1 100644 --- a/drivers/misc/habanalabs/common/memory.c +++ b/drivers/misc/habanalabs/common/memory.c @@ -77,8 +77,8 @@ static int alloc_device_memory(struct hl_ctx *ctx, struct hl_mem_in *args, paddr = (u64) gen_pool_alloc(vm->dram_pg_pool, total_size); if (!paddr) { dev_err(hdev->dev, - "failed to allocate %llu huge contiguous pages\n", - num_pgs); + "failed to allocate %llu contiguous pages with total size of %llu\n", + num_pgs, total_size); return -ENOMEM; } } |