The Windows API offers the CreateFileMappingNuma function (http://msdn.microsoft.com/en-us/library/windows/desktop/aa366539(v=vs.85).aspx) to create a named shared memory space on a specific NUMA node.
So far, I have not found an equivalent function for Linux.
My current approach looks like this:
- Allocate named shared memory (using shm_open(...))
- Determine current NUMA node (using numa_move_pages(...))
- Move pages to target Node (using numa_move_pages(...) again)
Does anyone know a better approach?
EDIT: For the record: My proposed implementation does work as expected!