Page MenuHomeFreeBSD

sysv shm: Fix SHM_REMAP flag value
ClosedPublic

Authored by brooks on Sep 27 2024, 9:54 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, May 19, 2:08 AM
Unknown Object (File)
Apr 29 2026, 2:40 PM
Unknown Object (File)
Apr 29 2026, 2:33 PM
Unknown Object (File)
Apr 29 2026, 5:32 AM
Unknown Object (File)
Apr 29 2026, 5:27 AM
Unknown Object (File)
Apr 17 2026, 12:02 PM
Unknown Object (File)
Apr 15 2026, 8:56 PM
Unknown Object (File)
Apr 11 2026, 1:03 PM
Subscribers

Details

Summary

SHM_REMAP was incorrectly defined to 030000 which collides with
SHM_RDONLY and SHM_RND. Renumber to 040000 (incidentally matching
Linux).

This is an ABI break, but the previous ABI was unusable (SHM_REMAP would
imply SHM_RDONLY and vice versa). Fortunately SHM_REMAP has very few
consumers in the wild (I spotted openjdk for Linux, libfabric, MIPCH,
and one other MPI thing in Debian code search)

Fixes: ea7e7006db10 Implement shmat(2) flag SHM_REMAP.

Diff Detail

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