[Intel-gfx] [PATCH] drm/i915: Fix memory leaks in function live_nop_switch
Cong Liu
liucong2 at kylinos.cn
Mon May 8 08:50:15 UTC 2023
Be sure to properly free the allocated memory before exiting
the live_nop_switch function.
Signed-off-by: Cong Liu <liucong2 at kylinos.cn>
---
drivers/gpu/drm/i915/gem/selftests/i915_gem_context.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/gem/selftests/i915_gem_context.c b/drivers/gpu/drm/i915/gem/selftests/i915_gem_context.c
index a81fa6a20f5a..54eddbe7f510 100644
--- a/drivers/gpu/drm/i915/gem/selftests/i915_gem_context.c
+++ b/drivers/gpu/drm/i915/gem/selftests/i915_gem_context.c
@@ -59,7 +59,8 @@ static int live_nop_switch(void *arg)
ctx = kcalloc(nctx, sizeof(*ctx), GFP_KERNEL);
if (!ctx) {
err = -ENOMEM;
- goto out_file;
+ fput(file);
+ return err;
}
for (n = 0; n < nctx; n++) {
@@ -175,6 +176,7 @@ static int live_nop_switch(void *arg)
out_file:
fput(file);
+ kfree(ctx);
return err;
}
--
2.34.1
No virus found
Checked by Hillstone Network AntiVirus
More information about the Intel-gfx
mailing list