-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_client.py
90 lines (65 loc) · 1.92 KB
/
run_client.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
85
86
87
88
89
90
from py_spdk import pyspdk
print "=====================get_vhost_blk_controllers=============="
def run_client():
py = pyspdk('nvme')
if py.is_alive():
val = py.exec_rpc('get_vhost_blk_controllers', '127.0.0.1')
return val
cal=run_client()
print cal
print "=====================get_vhost_blk_controllers=============="
def run_client():
py = pyspdk('nvme')
if py.is_alive():
val = py.exec_rpc('get_vhost_blk_controllers', '127.0.0.1')
return val
cal=run_client()
print cal
print "=====================get_vhost_scsi_controllers============="
def run_client():
py = pyspdk('nvme')
if py.is_alive():
val = py.exec_rpc('get_vhost_scsi_controllers', '127.0.0.1')
return val
cal=run_client()
print cal
print "======================get_scsi_devices======================"
def run_client():
py = pyspdk('nvme')
if py.is_alive():
val = py.exec_rpc('get_scsi_devices', '127.0.0.1')
return val
cal=run_client()
print cal
print "=======================get_luns=============================="
def run_client():
py = pyspdk('nvme')
if py.is_alive():
val = py.exec_rpc('get_luns', '127.0.0.1')
return val
cal=run_client()
print cal
print "====================get_interfaces=========================="
def run_client():
py = pyspdk('nvme')
if py.is_alive():
val = py.exec_rpc('get_interfaces', '127.0.0.1')
return val
cal=run_client()
print cal
print "===================get_trace_flags=========================="
def run_client():
py = pyspdk('nvme')
if py.is_alive():
val = py.exec_rpc('get_trace_flags', '127.0.0.1')
return val
cal=run_client()
print cal
print "====================get_bdevs========================="
def run_client():
py = pyspdk('nvme')
if py.is_alive():
val = py.exec_rpc('get_bdevs', '127.0.0.1')
return val
cal=run_client()
print cal