Page MenuHomeFreeBSD

Save 7k of text space by using simpler crc32 for standalone case.
ClosedPublic

Authored by imp on Mar 30 2020, 5:33 PM.
Tags
None
Referenced Files
Unknown Object (File)
Mar 14 2024, 5:48 AM
Unknown Object (File)
Mar 14 2024, 5:48 AM
Unknown Object (File)
Mar 14 2024, 5:48 AM
Unknown Object (File)
Mar 10 2024, 10:04 PM
Unknown Object (File)
Mar 1 2024, 7:22 PM
Unknown Object (File)
Feb 18 2024, 2:37 AM
Unknown Object (File)
Feb 14 2024, 4:05 PM
Unknown Object (File)
Jan 11 2024, 4:43 AM
Subscribers

Details

Summary

We don't need all that fancy optimization in the boot loader, so use a
simplified version of the CRC function. We could save more by doing it one bit
at a time rather than 32, but this is the biggest savings at the smallest
performance hit.

With LUA and verfied exec, gptboot, gptzfsboot and friends are pushing the ~530k
limit and every little bit helps.

Diff Detail

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

Event Timeline

allanjude added a subscriber: allanjude.

This seems like a good way to cut down the size

Reviewed By: allanjude

This revision is now accepted and ready to land.Mar 30 2020, 5:36 PM
This revision was automatically updated to reflect the committed changes.