Spdk/scripts/rpc/subsystem.py

8 lines
194 B
Python
Raw Normal View History

def get_subsystems(client):
return client.call('get_subsystems')
def get_subsystem_config(client, name):
params = {'name': name}
return client.call('get_subsystem_config', params)