mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-28 12:25:31 +00:00
cxl: Release irqs if memory allocation fails
This minor patch plugs a potential irq leak in case of a memory allocation failure inside function the afu_allocate_irqs. Presently the irqs allocated to the context gets leaked if allocation of either one of context irq_bitmap or irq_names fails. Signed-off-by: Vaibhav Jain <vaibhav@linux.vnet.ibm.com> Acked-by: Ian Munsie <imunsie@au1.ibm.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
This commit is contained in:
parent
f47f966fbe
commit
a6897f3966
@ -430,6 +430,9 @@ int afu_allocate_irqs(struct cxl_context *ctx, u32 count)
|
|||||||
int rc, r, i, j = 1;
|
int rc, r, i, j = 1;
|
||||||
struct cxl_irq_name *irq_name;
|
struct cxl_irq_name *irq_name;
|
||||||
|
|
||||||
|
/* Initialize the list head to hold irq names */
|
||||||
|
INIT_LIST_HEAD(&ctx->irq_names);
|
||||||
|
|
||||||
if ((rc = cxl_alloc_irq_ranges(&ctx->irqs, ctx->afu->adapter, count)))
|
if ((rc = cxl_alloc_irq_ranges(&ctx->irqs, ctx->afu->adapter, count)))
|
||||||
return rc;
|
return rc;
|
||||||
|
|
||||||
@ -441,13 +444,12 @@ int afu_allocate_irqs(struct cxl_context *ctx, u32 count)
|
|||||||
ctx->irq_bitmap = kcalloc(BITS_TO_LONGS(count),
|
ctx->irq_bitmap = kcalloc(BITS_TO_LONGS(count),
|
||||||
sizeof(*ctx->irq_bitmap), GFP_KERNEL);
|
sizeof(*ctx->irq_bitmap), GFP_KERNEL);
|
||||||
if (!ctx->irq_bitmap)
|
if (!ctx->irq_bitmap)
|
||||||
return -ENOMEM;
|
goto out;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Allocate names first. If any fail, bail out before allocating
|
* Allocate names first. If any fail, bail out before allocating
|
||||||
* actual hardware IRQs.
|
* actual hardware IRQs.
|
||||||
*/
|
*/
|
||||||
INIT_LIST_HEAD(&ctx->irq_names);
|
|
||||||
for (r = 1; r < CXL_IRQ_RANGES; r++) {
|
for (r = 1; r < CXL_IRQ_RANGES; r++) {
|
||||||
for (i = 0; i < ctx->irqs.range[r]; i++) {
|
for (i = 0; i < ctx->irqs.range[r]; i++) {
|
||||||
irq_name = kmalloc(sizeof(struct cxl_irq_name),
|
irq_name = kmalloc(sizeof(struct cxl_irq_name),
|
||||||
@ -469,6 +471,7 @@ int afu_allocate_irqs(struct cxl_context *ctx, u32 count)
|
|||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
out:
|
out:
|
||||||
|
cxl_release_irq_ranges(&ctx->irqs, ctx->afu->adapter);
|
||||||
afu_irq_name_free(ctx);
|
afu_irq_name_free(ctx);
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user