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
F112043748: D23824.id68779.diff
Wed, Mar 12, 12:32 AM
Unknown Object (File)
Sun, Mar 9, 3:54 PM
Unknown Object (File)
Fri, Mar 7, 10:58 PM
Unknown Object (File)
Fri, Feb 21, 9:34 AM
Unknown Object (File)
Wed, Feb 19, 9:17 PM
Unknown Object (File)
Jan 28 2025, 11:04 PM
Unknown Object (File)
Jan 27 2025, 12:21 PM
Unknown Object (File)
Jan 3 2025, 1:33 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.