mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-05 10:31:46 +09:00
selftests/powerpc/pmu: Fix sample field check in the mmcra_thresh_marked_sample_test
[ Upstream commit8a32341cf0] The testcase verifies the setting of different fields in Monitor Mode Control Register A (MMCRA). In the current code, EV_CODE_EXTRACT macro is used to extract the "sample" field, which then needs to be further processed to fetch rand_samp_elig and rand_samp_mode bits. But the current code is not passing valid sample field to EV_CODE_EXTRACT macro. Patch addresses this by fixing the input for EV_CODE_EXTRACT. Fixes:29cf373c57("selftests/powerpc/pmu: Add interface test for mmcra register fields") Reported-by: David Binderman <dcb314@hotmail.com> Link: https://lore.kernel.org/r/DB6P189MB0568CF002762C6C43AF6DF169CA89@DB6P189MB0568.EURP189.PROD.OUTLOOK.COM Signed-off-by: Kajol Jain <kjain@linux.ibm.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://msgid.link/20230301170918.69176-1-kjain@linux.ibm.com Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
ae69d36d46
commit
c0f49bbb30
@@ -63,9 +63,9 @@ static int mmcra_thresh_marked_sample(void)
|
|||||||
get_mmcra_thd_stop(get_reg_value(intr_regs, "MMCRA"), 4));
|
get_mmcra_thd_stop(get_reg_value(intr_regs, "MMCRA"), 4));
|
||||||
FAIL_IF(EV_CODE_EXTRACT(event.attr.config, marked) !=
|
FAIL_IF(EV_CODE_EXTRACT(event.attr.config, marked) !=
|
||||||
get_mmcra_marked(get_reg_value(intr_regs, "MMCRA"), 4));
|
get_mmcra_marked(get_reg_value(intr_regs, "MMCRA"), 4));
|
||||||
FAIL_IF(EV_CODE_EXTRACT(event.attr.config, sample >> 2) !=
|
FAIL_IF((EV_CODE_EXTRACT(event.attr.config, sample) >> 2) !=
|
||||||
get_mmcra_rand_samp_elig(get_reg_value(intr_regs, "MMCRA"), 4));
|
get_mmcra_rand_samp_elig(get_reg_value(intr_regs, "MMCRA"), 4));
|
||||||
FAIL_IF(EV_CODE_EXTRACT(event.attr.config, sample & 0x3) !=
|
FAIL_IF((EV_CODE_EXTRACT(event.attr.config, sample) & 0x3) !=
|
||||||
get_mmcra_sample_mode(get_reg_value(intr_regs, "MMCRA"), 4));
|
get_mmcra_sample_mode(get_reg_value(intr_regs, "MMCRA"), 4));
|
||||||
FAIL_IF(EV_CODE_EXTRACT(event.attr.config, sm) !=
|
FAIL_IF(EV_CODE_EXTRACT(event.attr.config, sm) !=
|
||||||
get_mmcra_sm(get_reg_value(intr_regs, "MMCRA"), 4));
|
get_mmcra_sm(get_reg_value(intr_regs, "MMCRA"), 4));
|
||||||
|
|||||||
Reference in New Issue
Block a user