From f08e17c7be82797699bd8fef5e16621666a41771 Mon Sep 17 00:00:00 2001 From: Alexandre Derumier Date: Thu, 28 May 2015 15:59:21 +0200 Subject: [PATCH] implement cgroups through systemd-run Signed-off-by: Alexandre Derumier --- PVE/QemuServer.pm | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/PVE/QemuServer.pm b/PVE/QemuServer.pm index 22ff875b..3cd44751 100644 --- a/PVE/QemuServer.pm +++ b/PVE/QemuServer.pm @@ -2618,6 +2618,15 @@ sub config_to_command { my $hotplug_features = parse_hotplug_features(defined($conf->{hotplug}) ? $conf->{hotplug} : '1'); my $machine_type = $forcemachine || $conf->{machine}; + my $cpuunits = defined($conf->{cpuunits}) ? + $conf->{cpuunits} : $defaults->{cpuunits}; + + push @$cmd, '/usr/bin/systemd-run'; + push @$cmd, '--scope'; + push @$cmd, '--slice', "qemu"; + push @$cmd, '--unit', $vmid; + push @$cmd, '-p', "CPUShares=$cpuunits"; + push @$cmd, '/usr/bin/kvm'; push @$cmd, '-id', $vmid;