Page MenuHomeFreeBSD

Micro-optimize arm64's uma_small_alloc()
ClosedPublic

Authored by alc on Oct 19 2020, 11:38 PM.
Tags
None
Referenced Files
Unknown Object (File)
Wed, Mar 25, 6:20 AM
Unknown Object (File)
Mon, Mar 23, 1:44 AM
Unknown Object (File)
Sat, Mar 21, 3:32 AM
Unknown Object (File)
Wed, Mar 18, 9:05 AM
Unknown Object (File)
Wed, Mar 18, 5:07 AM
Unknown Object (File)
Mar 3 2026, 6:00 PM
Unknown Object (File)
Mar 3 2026, 12:03 PM
Unknown Object (File)
Dec 31 2025, 5:08 PM
Subscribers

Details

Summary

Replace bzero(..., PAGE_SIZE) by pagezero(). Ultimately, they use the same method for bulk zeroing, but the generality of bzero() requires size and alignment checks that pagezero() does not.

Eliminate an unnecessary #include.

Diff Detail

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

Event Timeline

alc requested review of this revision.Oct 19 2020, 11:38 PM

Most other implementations also use bzero(), though on them pagezero() is nothing more than bzero(va, PAGE_SIZE) anyway.

This revision is now accepted and ready to land.Oct 20 2020, 2:36 AM

Most other implementations also use bzero(), though on them pagezero() is nothing more than bzero(va, PAGE_SIZE) anyway.

amd64 also uses pagezero().