forked from autotest/autotest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkvm_control.py
84 lines (63 loc) · 2.02 KB
/
kvm_control.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
"""
Utilities useful to client control files that test KVM.
"""
from autotest.client import utils
from autotest.client.shared import error
def get_kvm_arch():
"""
Get the kvm kernel module to be loaded based on the CPU architecture
:raises: :class:`error.TestError` if no vendor name or cpu flags are found
:returns: 'kvm_amd' or 'kvm_intel' or 'kvm_power7'
:rtype: `string`
"""
kvm_archs = {
"amd": "kvm_amd",
"hygon": "kvm_amd",
"kunpeng": "kvm_arm",
"pangu": "kvm_arm",
"intel": "kvm_intel",
"power7": "kvm_power7"
}
flags = {
'kvm_amd': "svm",
'kvm_intel': "vmx"
}
vendor_name = utils.get_cpu_vendor_name()
if not vendor_name:
raise error.TestError("CPU Must be AMD, Hygon, kunpeng, pangu, Intel or Power7")
arch_type = kvm_archs.get(vendor_name, None)
cpu_flag = flags.get(arch_type, None)
if cpu_flag is None and vendor_name in ('power7', 'kunpeng', 'pangu'):
return arch_type
if not utils.cpu_has_flags(cpu_flag):
raise error.TestError("%s CPU architecture must have %s "
"flag active and must be KVM ready" %
(arch_type, cpu_flag))
return arch_type
def load_kvm():
"""
Loads the appropriate KVM kernel modules depending on the current CPU
architecture
:returns: 0 on success or 1 on failure
:rtype: `int`
"""
kvm_arch = get_kvm_arch()
def load_module(mod='kvm'):
return utils.system('modprobe %s' % mod)
loaded = load_module()
if not loaded:
loaded = load_module(mod=kvm_arch)
return loaded
def unload_kvm():
"""
Unloads the current KVM kernel modules ( if loaded )
:returns: 0 on success or 1 on failure
:rtype: `int`
"""
kvm_arch = get_kvm_arch()
def unload_module(mod):
return utils.system('rmmod %s' % mod)
unloaded = unload_module(kvm_arch)
if not unloaded:
unloaded = unload_module('kvm')
return unloaded