Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions igvm/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -319,8 +319,7 @@ def parse_args():
)
subparser.add_argument(
'count',
type=int,
help='New number of CPUs',
help='New number of CPUs, integers with optional prefix + or -',
)
subparser.add_argument(
'--offline',
Expand Down
23 changes: 22 additions & 1 deletion igvm/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,30 @@ def vcpu_set(vm_hostname, count, offline=False):
)
offline = False

if count == vm.dataset_obj['num_cpu']:
if str(count).startswith('+'):
count = vm.dataset_obj['num_cpu'] + int(str(count)[1:])
elif str(count).startswith('-'):
if not offline:
raise IGVMError(
'Decreasing CPU count is only allowed offline.'
)
count = vm.dataset_obj['num_cpu'] - int(str(count)[1:])
elif int(count) == vm.dataset_obj['num_cpu']:
raise Warning('CPU count is the same.')

# Validate bounds to fail early
# First check for at least 1 CPU
count = int(count)
if count < 1:
raise IGVMError(f'Invalid CPU count: {count}')

# Also check if we want to exceed hypervisor maximum
max_cpus = vm.hypervisor.dataset_obj['num_cpu']
if count > max_cpus:
raise IGVMError(
f'Requested {count} CPUs exceeds hypervisor maximum ({max_cpus})'
)

if offline:
vm.shutdown()
vm.set_num_cpu(count)
Expand Down
14 changes: 12 additions & 2 deletions tests/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -475,11 +475,21 @@ def _get_cpus_vm():
with self.assertRaises(IGVMError):
vcpu_set(VM_HOSTNAME, 0, offline=True)

# Has to be offline
with self.assertRaises(IGVMError):
vcpu_set(VM_HOSTNAME, -5)
vcpu_set(VM_HOSTNAME, '-1')

# Not enough CPUs to remove
with self.assertRaises(IGVMError):
vcpu_set(VM_HOSTNAME, -5, offline=True)
vcpu_set(VM_HOSTNAME, '-5', offline=True)

vcpu_set(VM_HOSTNAME, '+2')
self.assertEqual(_get_cpus_hv(), 4)
self.assertEqual(_get_cpus_vm(), 4)

vcpu_set(VM_HOSTNAME, '-2', offline=True)
self.assertEqual(_get_cpus_hv(), 2)
self.assertEqual(_get_cpus_vm(), 2)

def test_sync(self):
obj = (
Expand Down