Commit fa46c7bb authored by Oded Gabbay's avatar Oded Gabbay
Browse files

accel/habanalabs/gaudi2: fix missing check of kernel ctx



If we are initializing the kernel context when we have a Gaudi2 device,
we don't need to do any late initializing of that context with
specific Gaudi2 code.

Reviewed-by: default avatarOfir Bitton <obitton@habana.ai>
Signed-off-by: default avatarOded Gabbay <ogabbay@kernel.org>
parent 15c0bb16
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -10651,6 +10651,9 @@ static int gaudi2_ctx_init(struct hl_ctx *ctx)
{
	int rc;

	if (ctx->asid == HL_KERNEL_ASID_ID)
		return 0;

	rc = gaudi2_mmu_prepare(ctx->hdev, ctx->asid);
	if (rc)
		return rc;