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)
Thu, May 21, 12:59 PM
Unknown Object (File)
Wed, May 20, 8:56 PM
Unknown Object (File)
Wed, May 20, 12:41 PM
Unknown Object (File)
Sat, May 16, 11:20 PM
Unknown Object (File)
Wed, May 13, 7:27 PM
Unknown Object (File)
Wed, May 13, 7:27 PM
Unknown Object (File)
Wed, May 13, 7:26 PM
Unknown Object (File)
Mon, May 11, 1:58 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