Page MenuHomeFreeBSD

Shrink sysent from 48 to 32 bytes
ClosedPublic

Authored by trasz on Sep 21 2020, 12:52 PM.
Tags
None
Referenced Files
F112311398: D26508.id.diff
Sat, Mar 15, 9:42 PM
Unknown Object (File)
Sat, Mar 8, 2:02 PM
Unknown Object (File)
Sat, Mar 8, 3:49 AM
Unknown Object (File)
Sun, Feb 23, 11:56 PM
Unknown Object (File)
Sat, Feb 22, 9:31 AM
Unknown Object (File)
Feb 8 2025, 1:58 PM
Unknown Object (File)
Feb 8 2025, 1:40 PM
Unknown Object (File)
Feb 8 2025, 11:19 AM

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 Not Applicable
Unit
Tests Not Applicable

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