Page MenuHomeFreeBSD

netlink: Align allocations on __max_align_t, not uint64_t.
ClosedPublic

Authored by jhb on Aug 3 2023, 5:32 PM.
Tags
None
Referenced Files
Unknown Object (File)
Mon, Nov 25, 6:56 AM
Unknown Object (File)
Sun, Nov 24, 4:26 PM
Unknown Object (File)
Sun, Nov 24, 5:25 AM
Unknown Object (File)
Sat, Nov 23, 1:30 AM
Unknown Object (File)
Thu, Nov 21, 5:51 AM
Unknown Object (File)
Wed, Nov 20, 7:49 AM
Unknown Object (File)
Tue, Nov 19, 7:37 PM
Unknown Object (File)
Tue, Nov 19, 5:15 PM
Subscribers

Details

Summary

uint64_t is not sufficient alignment for allocators on all platforms.
On a CHERI platform pointers require 16 byte alignment, but also if a
type contained a uint128_t or long double it would not be aligned
correctly either. C11 added max_align_t precisely to provide a
portable type for allocators to use.

Obtained from: CheriBSD
Sponsored by: DARPA

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable