mirror of
https://github.com/torvalds/linux.git
synced 2024-12-20 18:11:47 +00:00
habanalabs: free host huge va_range if not used
If huge range is not valid, driver uses the host range also for huge page allocations, but driver never frees its allocation. This introduces a memory leak every time a user closes its context. Signed-off-by: Ofir Bitton <obitton@habana.ai> Reviewed-by: Oded Gabbay <ogabbay@kernel.org> Signed-off-by: Oded Gabbay <ogabbay@kernel.org>
This commit is contained in:
parent
f0992098ca
commit
c8c39fbd01
@ -1626,6 +1626,7 @@ static int vm_ctx_init_with_ranges(struct hl_ctx *ctx,
|
||||
goto host_hpage_range_err;
|
||||
}
|
||||
} else {
|
||||
kfree(ctx->host_huge_va_range);
|
||||
ctx->host_huge_va_range = ctx->host_va_range;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user