Page MenuHomeFreeBSD

zero vm_page_t inputs to vm_page_initfake() for predictable results
ClosedPublic

Authored by tychon on May 5 2019, 5:28 PM.
Tags
None
Referenced Files
F110376238: D20162.diff
Mon, Feb 17, 1:28 PM
Unknown Object (File)
Sat, Feb 15, 7:22 PM
Unknown Object (File)
Sat, Feb 8, 1:41 AM
Unknown Object (File)
Mon, Jan 20, 5:23 AM
Unknown Object (File)
Sun, Jan 19, 6:55 AM
Unknown Object (File)
Dec 19 2024, 7:18 AM
Unknown Object (File)
Dec 14 2024, 10:50 PM
Unknown Object (File)
Dec 13 2024, 6:18 PM
Subscribers

Details

Summary

In r345811 I introduced a bug when I copied the malloc() of the fake-page array from one place to another by omitting the M_ZERO. Put it back in dmar_bus_dmamap_load_phys() and dmar_bus_dmamap_load_buffer() as well as nvdimm_spa_uio() and nvdimm_spa_g_all_unmapped().

Diff Detail

Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

Update to a diff with full context.

I think that adding M_ZERO in the places were it is missed is better solution. I am not sure that re-initialization case is not used at all. It is supposed to be used when fake pages come from the vm_page_array[], e.g. typically x86 aperture (or BARs) is located in PCI window and we specially cover memory to 4G in vm_page_array[] even if machine has less than 4G. For such persistent fake pages, it is useful to keep all the fields of struct vm_page intact. I believe I once pasted you the change I have in bhyve+DMAR branch which unconditionally initializes holes in phys map as fictitious pages.

tychon retitled this revision from vm_page_initfake() could do a better job initializing to zero vm_page_t inputs to vm_page_initfake() for predictable results.
tychon edited the summary of this revision. (Show Details)
This revision is now accepted and ready to land.May 5 2019, 8:11 PM
This revision was automatically updated to reflect the committed changes.