Page MenuHomeFreeBSD

[PPC64] Fix wrong KASSERT in mphyp_pte_insert()
ClosedPublic

Authored by luporl on Apr 22 2019, 5:29 PM.
Tags
None
Referenced Files
Unknown Object (File)
Jan 27 2024, 10:11 PM
Unknown Object (File)
Jan 27 2024, 10:10 PM
Unknown Object (File)
Jan 27 2024, 10:10 PM
Unknown Object (File)
Jan 27 2024, 3:54 AM
Unknown Object (File)
Jan 26 2024, 5:16 AM
Unknown Object (File)
Jan 22 2024, 12:43 PM
Unknown Object (File)
Dec 24 2023, 11:34 PM
Unknown Object (File)
Dec 22 2023, 11:03 PM

Details

Summary

As mphyp_pte_unset() can also remove PTE entries, and as this can
happen in parallel with PTEs evicted by mphyp_pte_insert(), there
is a (rare) chance the PTE being evicted gets removed before
mphyp_pte_insert() is able to do so. Thus, the KASSERT should
check wether the result is H_SUCCESS or H_NOT_FOUND, to avoid
panics if the situation described above occurs.

More details about this issue can be found in PR 237470.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable