summaryrefslogtreecommitdiffstats
path: root/src/spdk/scripts/rpc/subsystem.py
blob: c8e662bcb0721b881c85fd896eb6128d37d0ae58 (plain)
1
2
3
4
5
6
7
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)