I'm working on a NUMA server which has two memory nodes.
I want to create a file system which will be loaded in main memory like tmpfs or ramfs and I want to bind it to a specific memory node. In other words I don't want the ramfs contents to be interleaved across the two memory nodes.
So how can I achieve this?
I have tried the numactl command with the --file option but it seems to work only for single files (I need to load a directory).
thanks