The test for 'nr_vmemranges < nr_vnodes' in xc_domain_setvnuma() was
originally writtten with the idea that number of memory ranges would
at least be equal to number of nodes.
We may want to specify nodes with no memory, however, and thus this
check should be removed.
Signed-off-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Acked-by: Wei Liu <wei.liu2@citrix.com>
XC_HYPERCALL_BUFFER_BOUNCE_BOTH);
errno = EINVAL;
- if ( nr_vnodes == 0 || nr_vmemranges == 0 ||
- nr_vmemranges < nr_vnodes || nr_vcpus == 0 )
+ if ( nr_vnodes == 0 || nr_vmemranges == 0 || nr_vcpus == 0 )
return -1;
if ( !vdistance || !vcpu_to_vnode || !vmemrange || !vnode_to_pnode )