Page MenuHomeFreeBSD

Shrink sysent from 48 to 32 bytes
ClosedPublic

Authored by trasz on Sep 21 2020, 12:52 PM.
Tags
None
Referenced Files
Unknown Object (File)
Wed, Nov 26, 12:13 AM
Unknown Object (File)
Wed, Nov 26, 12:13 AM
Unknown Object (File)
Sun, Nov 23, 11:27 PM
Unknown Object (File)
Sat, Nov 22, 4:24 AM
Unknown Object (File)
Thu, Nov 20, 4:47 PM
Unknown Object (File)
Thu, Nov 20, 4:41 PM
Unknown Object (File)
Thu, Nov 20, 4:41 PM
Unknown Object (File)
Thu, Nov 20, 4:37 PM

Details

Summary

Shrink sysent from 48 to 32 bytes by shrinking some entries and reordering them.

This depends on https://reviews.freebsd.org/D26530.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 33689
Build 30927: arc lint + arc unit

Event Timeline

You can shrink it to 32 bytes:
sy_nargs can be uint8_t, we definitely do not need more than 255 arguments
sy_flags can be uint8_t as well.

trasz retitled this revision from Shrink sysent from 48 to 40 bytes to Shrink sysent from 48 to 32 bytes.Sep 23 2020, 2:02 PM
trasz edited the summary of this revision. (Show Details)

Note in the commit message that 48->32 is for LP64, for ILP32 it seems to be 32->28 (but I could miscount).

This revision is now accepted and ready to land.Sep 23 2020, 3:05 PM