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)
Jan 12 2024, 10:23 AM
Unknown Object (File)
Dec 23 2023, 5:44 AM
Unknown Object (File)
Dec 3 2023, 4:09 PM
Unknown Object (File)
Sep 5 2023, 10:55 PM
Unknown Object (File)
Sep 5 2023, 10:54 PM
Unknown Object (File)
Sep 5 2023, 10:53 PM
Unknown Object (File)
Sep 5 2023, 10:53 PM
Unknown Object (File)
Aug 31 2023, 11:49 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 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