Page MenuHomeFreeBSD

malloc: Fix domainset usage in malloc_domainset() for large allocs
ClosedPublic

Authored by markj on Fri, Jul 17, 9:13 PM.
Tags
None
Referenced Files
F165265064: D58316.id183153.diff
Fri, Aug 7, 6:55 AM
Unknown Object (File)
Thu, Aug 6, 10:33 AM
Unknown Object (File)
Mon, Jul 27, 6:31 PM
Unknown Object (File)
Mon, Jul 27, 8:23 AM
Unknown Object (File)
Sun, Jul 26, 1:15 PM
Unknown Object (File)
Sat, Jul 25, 6:34 PM
Unknown Object (File)
Sat, Jul 25, 7:32 AM
Unknown Object (File)
Fri, Jul 24, 11:36 PM
Subscribers

Details

Summary

We should of course pass the provided domainset rather than copying what
plain malloc() does.

Fixes: 89deca0a3361 ("malloc: make malloc_large closer to standalone")

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Skipped
Unit
Tests Skipped
Build Status
Buildable 74903
Build 71786: arc lint + arc unit

Event Timeline

Maybe one day we should plumb it for malloc_dbg / memguard_alloc too.

This revision is now accepted and ready to land.Fri, Jul 17, 9:22 PM

Maybe one day we should plumb it for malloc_dbg / memguard_alloc too.

Do you use memguard at all? I haven't needed to reach for it since KASAN was added.

Maybe one day we should plumb it for malloc_dbg / memguard_alloc too.

Do you use memguard at all? I haven't needed to reach for it since KASAN was added.

Yes, though maybe there's a better way to do what we're doing. memguard can be used with only small performance impact for types/zones that don't match vm.memguard.desc. Actually I was recently thinking about a way to use memguard more broadly for infrequent allocations.