Page MenuHomeFreeBSD

Optimize padding in powerpc busdma_machdep.c
ClosedPublic

Authored by bdragon on May 1 2019, 4:14 AM.
Referenced Files
Unknown Object (File)
Sep 18 2024, 5:13 AM
Unknown Object (File)
Sep 17 2024, 5:43 PM
Unknown Object (File)
Sep 1 2024, 8:32 PM
Unknown Object (File)
Sep 1 2024, 2:50 AM
Unknown Object (File)
Aug 31 2024, 2:29 AM
Unknown Object (File)
Aug 15 2024, 4:27 PM
Unknown Object (File)
Aug 14 2024, 9:23 AM
Unknown Object (File)
May 17 2024, 10:25 PM
Subscribers

Details

Summary

Noticed this while manually inspecting DMA tags.

Save 64 bytes of padding (32b after nsegments due to alignment requirements of next member, 32b after map_count due to alignment requirements of next member due to odd number of contig. ints.)

Diff Detail

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

Event Timeline

From my count it saves 8 bytes, not 64. I don't think it's a significant issue, given the size of the structure already, but it's not a bad change, and does allow for better packing.

This revision is now accepted and ready to land.May 1 2019, 2:10 PM

Yeah I meant bits, not bytes. 64 bits. 8 bytes.

This revision was automatically updated to reflect the committed changes.