diff options
| author | Justin Hibbits <jhibbits@FreeBSD.org> | 2018-08-19 19:00:44 +0000 |
|---|---|---|
| committer | Justin Hibbits <jhibbits@FreeBSD.org> | 2018-08-19 19:00:44 +0000 |
| commit | 290646564b65de9b7dc46eb7d6c06001e1fc6d09 (patch) | |
| tree | 7e6c3e235123392cd038cab79bb3292af00eefc4 /sys/conf/ldscript.powerpc64 | |
| parent | 65aee3a872706517bd32ce3b4608704d7fddadd1 (diff) | |
Notes
Diffstat (limited to 'sys/conf/ldscript.powerpc64')
| -rw-r--r-- | sys/conf/ldscript.powerpc64 | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sys/conf/ldscript.powerpc64 b/sys/conf/ldscript.powerpc64 index 025c65451972..866bc05e622a 100644 --- a/sys/conf/ldscript.powerpc64 +++ b/sys/conf/ldscript.powerpc64 @@ -69,6 +69,20 @@ SECTIONS .sbss2 : { *(.sbss2) } /* Adjust the address for the data segment to the next page up. */ . = ALIGN(4096); + .data.read_frequently : + { + *(SORT_BY_ALIGNMENT(.data.read_frequently)) + } + .data.read_mostly : + { + *(.data.read_mostly) + } + . = ALIGN(128); + .data.exclusive_cache_line : + { + *(.data.exclusive_cache_line) + } + . = ALIGN(128); .data : { *(.data) |
