Page MenuHomeFreeBSD

powerpc_mmu_radix: add leaf page for wired mappings when pmap_enter(psind=1)
ClosedPublic

Authored by rew on Jan 5 2024, 10:49 PM.
Tags
None
Referenced Files
Unknown Object (File)
Wed, Jun 12, 11:57 PM
Unknown Object (File)
Jun 3 2024, 1:50 PM
Unknown Object (File)
May 13 2024, 10:06 PM
Unknown Object (File)
May 7 2024, 1:21 PM
Unknown Object (File)
May 4 2024, 3:10 PM
Unknown Object (File)
May 4 2024, 11:04 AM
Unknown Object (File)
Apr 23 2024, 6:51 PM
Unknown Object (File)
Apr 7 2024, 6:40 PM
Subscribers

Details

Summary

This applies the fix to powerpc's pmap as was done in commit aa3bcaad51076ceb
and d0941ed9b5c39d92 for amd64 and riscv pmaps, respectively.

Reported by: Jenkins
Fixes: e4078494f344bcba8709216bd601efa3dd05f6b3

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

rew requested review of this revision.Jan 5 2024, 10:49 PM

Thank you! I didn't know that this pmap implemented support for pmap_enter(psind=1).

sys/powerpc/aim/mmu_radix.c
4973

Is this part of the change intentional? I don't think it's right. This pmap doesn't use the valid field to store state; its use in other pmaps is a relatively new change.

Aside from the issue @markj pointed out, LGTM.

This revision is now accepted and ready to land.Jan 6 2024, 4:33 PM
sys/powerpc/aim/mmu_radix.c
4973

It was - after reading through the code and git log a bit more, I can see that it is wrong.

The issue I ran into was initializing the ref_count with the correct value when the leaf page is added. Setting the ref_count to 1 would fix the reported panic but would hit a KASSERT() in a different test when trying to unmap a superpage with ref_count == 1.

The two ideas I thought of was to relax the KASSERT() for ref_count == 1 or set ref_count = NPTEPG and the fill the leaf page with mappings when the page is allocated. I'll update this revision to illustrate the latter.

  • drop vm_page_all_valid() change
  • fill added leaf page with mappings
This revision now requires review to proceed.Jan 8 2024, 9:58 AM
markj added inline comments.
sys/powerpc/aim/mmu_radix.c
3259

I think this line is too long.

4973

I see now, thank you. I think your approach is ok. During demotion, we'll update the attributes in the cached page table page if necessary.

This revision is now accepted and ready to land.Jan 8 2024, 5:46 PM