Hi Ravi,
On 5/29/2024 11:37 PM, Ravi Bangoria wrote:
Hi George,It looks like x86_pmu_stop() is clearing the bit in active_mask and setting the events entry to NULL (and doing it in the correct order) for the same events index that amd_pmu_enable_all() is trying to enable.
Events can be deleted and the entry can be NULL.Can you please also explain "how".
The Syzkaller reproducer can be found in this link:
Check event for NULL in amd_pmu_enable_all() before enable to avoid a GPF.Can you please provide a bug report link? Also, any reproducer?
This appears to be an AMD only issue.
Syzkaller reported a GPF in amd_pmu_enable_all.
https://lore.kernel.org/netdev/CAMt6jhyec7-TSFpr3F+_ikjpu39WV3jnCBBGwpzpBrPx55w20g@xxxxxxxxxxxxxx/T/#uGood question, but the crash has not reproduced with the proposed fix in hours of testing. It usually reproduces within minutes without the fix.
@@ -760,7 +760,8 @@ static void amd_pmu_enable_all(int added)What if cpuc->events[idx] becomes NULL after if (cpuc->events[idx]) but
if (!test_bit(idx, cpuc->active_mask))
continue;
- amd_pmu_enable_event(cpuc->events[idx]);
+ if (cpuc->events[idx])
+ amd_pmu_enable_event(cpuc->events[idx]);
before amd_pmu_enable_event(cpuc->events[idx])?
Thank you,
George
Thanks,
Ravi