Page MenuHomeFreeBSD

A pair of UMA optimizations to improve cache behavior.
ClosedPublic

Authored by jeff on Feb 24 2020, 11:26 PM.
Tags
None
Referenced Files
Unknown Object (File)
Dec 1 2025, 2:35 PM
Unknown Object (File)
Nov 23 2025, 6:41 PM
Unknown Object (File)
Nov 20 2025, 10:15 PM
Unknown Object (File)
Nov 20 2025, 10:15 PM
Unknown Object (File)
Nov 20 2025, 10:14 PM
Unknown Object (File)
Nov 20 2025, 10:05 PM
Unknown Object (File)
Nov 14 2025, 2:50 AM
Unknown Object (File)
Nov 11 2025, 12:28 PM
Subscribers

Details

Summary

This adds a missing swap to uma_zfree to protect lifo behavior. The alloc bucket is now always the most recent data. This was +8% on my test.

It changes the load balancing algorithm for ROUNDROBIN to more strongly prefer the current domain unless there is a severe imbalance. I don't recall the actual % gain but it was not insignificant.

Diff Detail

Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 29584
Build 27445: arc lint + arc unit

Event Timeline

jeff added reviewers: rlibby, markj.
jeff set the repository for this revision to rS FreeBSD src repository - subversion.
sys/vm/uma_core.c
586

Style: missing spaces around '*'.

587

Suppose we have domains 0, 1 with 100 and 99 items, respectively, and pref == 0. Then prefitems is left equal to LONG_MAX and we will return domain 1, but it looks like the intent is to return 0 in this case.

sys/vm/uma_core.c
587

Yeah I should just drop the else on if domain == pref.

Looks good after fixing Mark's comments.

sys/vm/uma_core.c
586

You could just write this is if (prefitems <= least * 2).

This revision is now accepted and ready to land.Feb 25 2020, 7:19 AM
This revision was automatically updated to reflect the committed changes.