A bunch of python files in rpc and scripts directories were missing two blank lines after the opening comments. python3-pycodestyle-2.5.0-2.el8 was unhappy with this Signed-off-by: Mike Gerdts <mgerdts@nvidia.com> Change-Id: Iee7f2bd4f0ddd96b2be89949a3aa324b2f9ea43a Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/16003 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com>
25 lines
621 B
Python
25 lines
621 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)
|