They were missed by the initial set of patches which introduced this header as a mandatory one across different types of files. Signed-off-by: Michal Berger <michal.berger@intel.com> Change-Id: I3f9b37d41298c843e1648e72fe8593768ccd37e0 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/15423 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Community-CI: Mellanox Build Bot Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com>
24 lines
620 B
Python
24 lines
620 B
Python
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright (C) 2017 Intel Corporation.
|
|
# All rights reserved.
|
|
|
|
def nbd_start_disk(client, bdev_name, nbd_device):
|
|
params = {
|
|
'bdev_name': bdev_name
|
|
}
|
|
if nbd_device:
|
|
params['nbd_device'] = nbd_device
|
|
return client.call('nbd_start_disk', params)
|
|
|
|
|
|
def nbd_stop_disk(client, nbd_device):
|
|
params = {'nbd_device': nbd_device}
|
|
return client.call('nbd_stop_disk', params)
|
|
|
|
|
|
def nbd_get_disks(client, nbd_device=None):
|
|
params = {}
|
|
if nbd_device:
|
|
params['nbd_device'] = nbd_device
|
|
return client.call('nbd_get_disks', params)
|