I'm trying to allocate memory using hwloc_alloc_membind_nodeset() with the flag HWLOC_MEMBIND_STRICT set.

hwloc_topology_t topology;
hwloc_topology_init(&topology);

hwloc_obj_t obj = hwloc_get_obj_by_type(topology, HWLOC_OBJ_NODE, config::node);
void *res = hwloc_alloc_membind_nodeset(topology,
                                        sz,
                                        obj->nodeset,
                                        HWLOC_MEMBIND_BIND,
                                        HWLOC_MEMBIND_NOCPUBIND | HWLOC_MEMBIND_STRICT);

Since I recently moved to a new machine (4x Xeon 7560 using 3.0.0-8 kernel) the allocation fails. If I add an error check, and print the error message using strerror() the message I get seems to be weird and not hwloc related.

Invalid cross-device link

Can someone help me to identify the error?

[UPDATE]

Unfortunately the error message is one of the systems default messages for the errno EXDEV, however, the HWLOC interpretation is that the binding cannot be enforced.

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.