habanalabs/gaudi: set the correct rc in case of err
authorKoby Elbaz <kelbaz@habana.ai>
Thu, 10 Jun 2021 06:14:43 +0000 (09:14 +0300)
committerOded Gabbay <ogabbay@kernel.org>
Fri, 18 Jun 2021 12:23:42 +0000 (15:23 +0300)
fix the following smatch warnings:
gaudi_internal_cb_pool_init() warn: missing error code 'rc'

Signed-off-by: Koby Elbaz <kelbaz@habana.ai>
Reviewed-by: Oded Gabbay <ogabbay@kernel.org>
Signed-off-by: Oded Gabbay <ogabbay@kernel.org>
drivers/misc/habanalabs/gaudi/gaudi.c

index a46ec60..e66433d 100644 (file)
@@ -8393,8 +8393,10 @@ static int gaudi_internal_cb_pool_init(struct hl_device *hdev,
                        HL_VA_RANGE_TYPE_HOST, HOST_SPACE_INTERNAL_CB_SZ,
                        HL_MMU_VA_ALIGNMENT_NOT_NEEDED);
 
-       if (!hdev->internal_cb_va_base)
+       if (!hdev->internal_cb_va_base) {
+               rc = -ENOMEM;
                goto destroy_internal_cb_pool;
+       }
 
        mutex_lock(&ctx->mmu_lock);
        rc = hl_mmu_map_contiguous(ctx, hdev->internal_cb_va_base,