OSDN Git Service

x86/resctrl: Fix kfree() of the wrong type in domain_add_cpu()
authorJames Morse <james.morse@arm.com>
Fri, 17 Sep 2021 16:59:24 +0000 (16:59 +0000)
committerBorislav Petkov <bp@suse.de>
Wed, 6 Oct 2021 16:45:27 +0000 (18:45 +0200)
commitd4ebfca26dfab2803c31d68a30225be31b2f9ecf
treedad78126d785de3752998164f09543443df3aba8
parent64e87d4bd3201bf8a4685083ee4daf5c0d001452
x86/resctrl: Fix kfree() of the wrong type in domain_add_cpu()

Commit in Fixes separated the architecture specific and filesystem parts
of the resctrl domain structures.

This left the error paths in domain_add_cpu() kfree()ing the memory with
the wrong type.

This will cause a problem if someone adds a new member to struct
rdt_hw_domain meaning d_resctrl is no longer the first member.

Fixes: 792e0f6f789b ("x86/resctrl: Split struct rdt_domain")
Signed-off-by: James Morse <james.morse@arm.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
Acked-by: Reinette Chatre <reinette.chatre@intel.com>
Link: https://lkml.kernel.org/r/20210917165924.28254-1-james.morse@arm.com
arch/x86/kernel/cpu/resctrl/core.c