Page MenuHomeFreeBSD

Refactor uma_zfree_arg()
ClosedPublic

Authored by jeff on Nov 21 2019, 10:40 PM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Sep 17, 9:49 PM
Unknown Object (File)
Thu, Sep 17, 9:43 PM
Unknown Object (File)
Thu, Sep 17, 6:36 PM
Unknown Object (File)
Wed, Sep 16, 12:51 PM
Unknown Object (File)
Wed, Sep 16, 11:54 AM
Unknown Object (File)
Sun, Sep 13, 11:26 AM
Unknown Object (File)
Fri, Sep 11, 9:01 AM
Unknown Object (File)
Thu, Sep 10, 8:56 AM
Subscribers

Details

Summary

This is a more significant refactoring than uma_zalloc_arg() because it was in worse shape. We only need the zone lock if we're going to cache a bucket. The crossdomain logic really needed to be simplified and merged with the other case. Fundamentally we're just freeing a bucket and allocating a bucket, no matter which bucket that is.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

jeff added reviewers: markj, glebius, kib, cem.

The bucket_push and item_dtor refactors look reasonable. I'm not super familiar with this area of code.

sys/vm/uma_core.c
3214 ↗(On Diff #64701)

Missing space after while.

3311 ↗(On Diff #64701)

Isn't the use of lockfail redundant? We can write:

if (!ZONE_TRYLOCK(zone)) {
    ZONE_LOCK(zone);
    if (zone->uz_count < zone->uz_count_max)
        ....
}
jeff edited the summary of this revision. (Show Details)

Review feedback. Pull another function out, zone_free_bucket().

markj added inline comments.
sys/vm/uma_core.c
3317 ↗(On Diff #64910)

Missing parens.

This revision is now accepted and ready to land.Nov 27 2019, 5:01 PM