x86/resctrl: Use container_of() in delayed_work handlers
authorJames Morse <james.morse@arm.com>
Wed, 8 Jul 2020 16:39:23 +0000 (16:39 +0000)
committerBorislav Petkov <bp@suse.de>
Tue, 18 Aug 2020 15:05:08 +0000 (17:05 +0200)
commitf995801ba3a0660cb352c8beb794379c82781ca3
tree9de8b4adae87e367b2eb6d2a10a7d35a16058872
parentae0fbedd2a18cd82a2c0c5605a0a60865bc54576
x86/resctrl: Use container_of() in delayed_work handlers

mbm_handle_overflow() and cqm_handle_limbo() are both provided with
the domain's work_struct when called, but use get_domain_from_cpu()
to find the domain, along with the appropriate error handling.

container_of() saves some list walking and bitmap testing, use that
instead.

Signed-off-by: James Morse <james.morse@arm.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
Reviewed-by: Reinette Chatre <reinette.chatre@intel.com>
Link: https://lkml.kernel.org/r/20200708163929.2783-5-james.morse@arm.com
arch/x86/kernel/cpu/resctrl/monitor.c