diff options
| author | Ofir Bitton <[email protected]> | 2020-11-26 11:01:11 +0000 |
|---|---|---|
| committer | Oded Gabbay <[email protected]> | 2020-11-30 08:30:16 +0000 |
| commit | c8c39fbd01d42c30454e42c16bcd69c17260b90a (patch) | |
| tree | 7e510888d12327842f73819b5fcd54ee7a8b2832 | |
| parent | speakup: Reject setting the speakup line discipline outside of speakup (diff) | |
| download | kernel-c8c39fbd01d42c30454e42c16bcd69c17260b90a.tar.gz kernel-c8c39fbd01d42c30454e42c16bcd69c17260b90a.zip | |
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 <[email protected]>
Reviewed-by: Oded Gabbay <[email protected]>
Signed-off-by: Oded Gabbay <[email protected]>
| -rw-r--r-- | drivers/misc/habanalabs/common/memory.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/misc/habanalabs/common/memory.c b/drivers/misc/habanalabs/common/memory.c index 84227819e4d1..bfe223abf142 100644 --- a/drivers/misc/habanalabs/common/memory.c +++ b/drivers/misc/habanalabs/common/memory.c @@ -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; } |
