]> git.proxmox.com Git - qemu-server.git/commitdiff
numaX : use cpus option multiple time if cpulist
authorAlexandre Derumier <aderumier@odiso.com>
Mon, 10 Oct 2016 07:36:55 +0000 (09:36 +0200)
committerWolfgang Bumiller <w.bumiller@proxmox.com>
Mon, 10 Oct 2016 08:16:37 +0000 (10:16 +0200)
Signed-off-by: Alexandre Derumier <aderumier@odiso.com>
PVE/QemuServer/Memory.pm

index 087584b1960ebb0e49d1170433a3f541c29c0a34..0e4c83086fa70dc6146a4b0a408ac8a99fed69ac 100644 (file)
@@ -256,7 +256,7 @@ sub config {
            # cpus
            my $cpulists = $numa->{cpus};
            die "missing NUMA node$i cpus\n" if !defined($cpulists);
-           my $cpus = join(',', map {
+           my $cpus = join(',cpus=', map {
                my ($start, $end) = @$_;
                defined($end) ? "$start-$end" : $start
            } @$cpulists);