2018-06-18 12:09:44 +00:00
|
|
|
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,
|
2017-06-06 21:22:03 +00:00
|
|
|
'num_blocks': num_blocks,
|
2018-06-18 12:09:44 +00:00
|
|
|
'block_size': block_size}
|
2018-03-27 21:31:52 +00:00
|
|
|
return client.call('create_pmem_pool', params)
|
2017-06-06 21:22:03 +00:00
|
|
|
|
|
|
|
|
2018-06-18 12:09:44 +00:00
|
|
|
def pmem_pool_info(client, pmem_file):
|
|
|
|
"""Get details about pmem pool.
|
|
|
|
Args:
|
|
|
|
pmem_file: path to pmem pool
|
|
|
|
"""
|
|
|
|
params = {'pmem_file': pmem_file}
|
2018-03-27 21:31:52 +00:00
|
|
|
return client.call('pmem_pool_info', params)
|
2017-06-06 21:22:03 +00:00
|
|
|
|
|
|
|
|
2018-06-18 12:09:44 +00:00
|
|
|
def delete_pmem_pool(client, pmem_file):
|
|
|
|
"""Delete pmem pool.
|
|
|
|
Args:
|
|
|
|
pmem_file: path to pmem pool
|
|
|
|
"""
|
|
|
|
params = {'pmem_file': pmem_file}
|
2018-03-27 21:31:52 +00:00
|
|
|
return client.call('delete_pmem_pool', params)
|