4dc0ef6f45
rpmbuild pointed out that this is wrong to have executable files without shebang. Taking the opportunity and fix this for other files too. Change-Id: Ib21f436672150edc0aff511bff2eb6839870cf79 Signed-off-by: Pawel Wodkowski <pawelx.wodkowski@intel.com> Reviewed-on: https://review.gerrithub.io/425382 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Chandler-Test-Pool: SPDK Automated Test System <sys_sgsw@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com>
30 lines
893 B
Python
30 lines
893 B
Python
def create_pmem_pool(client, pmem_file, num_blocks, block_size):
|
|
"""Create pmem pool at specified path.
|
|
Args:
|
|
pmem_file: path at which to create pmem pool
|
|
num_blocks: number of blocks for created pmem pool file
|
|
block_size: block size for pmem pool file
|
|
"""
|
|
params = {'pmem_file': pmem_file,
|
|
'num_blocks': num_blocks,
|
|
'block_size': block_size}
|
|
return client.call('create_pmem_pool', params)
|
|
|
|
|
|
def pmem_pool_info(client, pmem_file):
|
|
"""Get details about pmem pool.
|
|
Args:
|
|
pmem_file: path to pmem pool
|
|
"""
|
|
params = {'pmem_file': pmem_file}
|
|
return client.call('pmem_pool_info', params)
|
|
|
|
|
|
def delete_pmem_pool(client, pmem_file):
|
|
"""Delete pmem pool.
|
|
Args:
|
|
pmem_file: path to pmem pool
|
|
"""
|
|
params = {'pmem_file': pmem_file}
|
|
return client.call('delete_pmem_pool', params)
|