Page MenuHomeFreeBSD

Allocate the vm_page_array on domain correct memory.
ClosedPublic

Authored by jeff on Aug 13 2019, 5:41 PM.
Tags
None
Referenced Files
Unknown Object (File)
Wed, Apr 17, 5:37 PM
Unknown Object (File)
Thu, Mar 28, 11:46 PM
Unknown Object (File)
Feb 11 2024, 1:42 AM
Unknown Object (File)
Nov 24 2023, 10:35 PM
Unknown Object (File)
Nov 12 2023, 3:40 AM
Unknown Object (File)
Nov 1 2023, 7:38 PM
Unknown Object (File)
Oct 31 2023, 12:25 PM
Unknown Object (File)
Oct 17 2023, 11:14 AM
Subscribers

Details

Summary

This gives us lower latency and lower interconnect bandwidth on many benchmarks that process a lot of pages. We probably should also affinitize the vm threads after this for maximum benefit.

I used a separate pml4 entry because it made life easier for me. There isn't a strong technical reason to do so. Given that the page array is 3% of memory I don't think this is an unreasonable use. There is a small downside that you can't skip allocating pages for the page array since it is not at the very end of memory anymore. This creates a waste of 3% of 3%. or .1% of memory. I find this acceptable.

Diff Detail

Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 25848
Build 24419: arc lint + arc unit

Event Timeline

jeff added reviewers: alc, kib, markj, gallatin.

I suspect the diff generation missed vm_phys.c.

sys/amd64/amd64/pmap.c
1436

spaces around '/'

1439

and there

1593

you probably can set pg_nx there.

sys/vm/vm_reserv.c
1368

Put {} around the loop body, it has more than one line.

1372

And there too.

sys/amd64/include/pmap.h
230

So the page array pml4 entry is just below DMAP, am I right ? And the large map max size is reduced by 512G ?

You should update the map in amd64/include/vmparam.h under the comment 'Virtual addresses of things'.

237

This is strange, this line should be shown as changed. Do you have some issue with the patch generation ?

jeff edited the summary of this revision. (Show Details)

Address review feedback. Move the page array between the direct map and kva.

sys/amd64/include/pmap.h
230

After this comment I decided to move it down and make sure it had a guard region on either side.

There was a gap between KPML4BASE and DMPML4I that was just big enough. If direct map must be naturally aligned then when it doubles there will still be space even if kva doubles.

I verified the vmparam.h values with gdb.

This revision is now accepted and ready to land.Aug 18 2019, 6:43 PM