mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-04 18:19:28 +09:00
irqchip/gic-v3-its: Free unused vpt_page when alloc vpe table fail
[ Upstream commit 34f8eb92ca ]
In its_vpe_init, when its_alloc_vpe_table fails, we should free
vpt_page allocated just before, instead of vpe->vpt_page.
Let's fix it.
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Jason Cooper <jason@lakedaemon.net>
Cc: Marc Zyngier <marc.zyngier@arm.com>
Signed-off-by: Nianyao Tang <tangnianyao@huawei.com>
Signed-off-by: Shaokun Zhang <zhangshaokun@hisilicon.com>
Signed-off-by: Marc Zyngier <maz@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
d0d12e5818
commit
acc760f32a
@@ -2631,7 +2631,7 @@ static int its_vpe_init(struct its_vpe *vpe)
|
||||
|
||||
if (!its_alloc_vpe_table(vpe_id)) {
|
||||
its_vpe_id_free(vpe_id);
|
||||
its_free_pending_table(vpe->vpt_page);
|
||||
its_free_pending_table(vpt_page);
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user