3

当我使用 numa_alloc_onnode() 在特定的 NUMA 节点上分配内存时,如下所示:

char *ptr;
if ((ptr = (char *) numa_alloc_onnode(1024,1)) == NULL) {
  fprintf(stderr,"Problem in %s line %d allocating memory\n",__FILE__,__LINE__);
  return(1);
}

然后使用 move_pages() 尝试确认分配的内存确实在节点 1 上:

  printf("ptr is on node %d\n",get_node(ptr));

在哪里

// This function returns the NUMA node that a pointer address resides on.

int get_node(void *p)
{
  int status[1];
  void *pa;
  unsigned long a;

  // round p down to the nearest page boundary

  a  = (unsigned long) p;
  a  = a - (a % ((unsigned long) getpagesize()));
  pa = (void *) a;    

  if (move_pages(0,1,&pa,NULL,status,0) != 0) {
    fprintf(stderr,"Problem in %s line %d calling move_pages()\n",__FILE__,__LINE__);
    abort();
  }

  return(status[0]);

}

我得到答案“ptr 在节点 -2 上”。从 errno-base.h 我发现 2 是 ENOENT,move_pages() 手册页说 -ENOENT 在这种情况下的状态意味着“页面不存在”。

如果我用普通的 malloc() 替换 numa_alloc_onnode() 它工作正常:我得到一个节点号。

有谁知道这里发生了什么?

提前致谢。

4

1 回答 1

4

numa_alloc_onnode(3)说:

   All numa memory allocation policy only takes effect when a
   page is actually faulted into the address space of a process
   by accessing it. The numa_alloc_* functions take care of this
   automatically.

这是否意味着您需要在内核实际为您提供页面之前将某些内容存储到新分配的页面中?

于 2011-11-12T01:15:29.113 回答