Commit 555ca7ad authored by Mike Gerdts's avatar Mike Gerdts Committed by Tomasz Zawadzki
Browse files

rpc: fix python style



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: default avatarMike Gerdts <mgerdts@nvidia.com>
Change-Id: Iee7f2bd4f0ddd96b2be89949a3aa324b2f9ea43a
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/16003


Tested-by: default avatarSPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: default avatarJim Harris <james.r.harris@intel.com>
Reviewed-by: default avatarTomasz Zawadzki <tomasz.zawadzki@intel.com>
parent 5dcb6e24
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
#  Copyright (C) 2017 Intel Corporation.
#  All rights reserved.


def spdk_kill_instance(client, sig_name):
    """Send a signal to the SPDK process.

+1 −0
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
#  Copyright (C) 2017 Intel Corporation.
#  All rights reserved.


def bdev_set_options(client, bdev_io_pool_size=None, bdev_io_cache_size=None, bdev_auto_examine=None,
                     small_buf_pool_size=None, large_buf_pool_size=None):
    """Set parameters for the bdev subsystem.
+1 −0
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
#  Copyright (C) 2019 Intel Corporation.
#  All rights reserved.


def blobfs_detect(client, bdev_name):
    """Detect whether a blobfs exists on bdev.

+1 −0
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
#  Copyright (C) 2019 Intel Corporation.
#  All rights reserved.


def env_dpdk_get_mem_stats(client):
    """Dump the applications memory stats to a file.

+1 −0
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
#  Copyright (C) 2017 Intel Corporation.
#  All rights reserved.


def iscsi_set_options(
        client,
        auth_file=None,
Loading