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>
29 lines
796 B
Python
29 lines
796 B
Python
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright (C) 2020 Intel Corporation.
|
|
# All rights reserved.
|
|
|
|
from spdk.rpc.client import print_json
|
|
|
|
|
|
def malloc_create(args):
|
|
params = {'num_blocks': 256, 'block_size': 4096}
|
|
return args.client.call('bdev_malloc_create', params)
|
|
|
|
|
|
def malloc_delete(args):
|
|
params = {'name': args.name}
|
|
return args.client.call('bdev_malloc_delete', params)
|
|
|
|
|
|
def create_malloc(args):
|
|
print_json(malloc_create(args))
|
|
|
|
|
|
def spdk_rpc_plugin_initialize(subparsers):
|
|
p = subparsers.add_parser('create_malloc', help='Create malloc backend')
|
|
p.set_defaults(func=create_malloc)
|
|
|
|
p = subparsers.add_parser('delete_malloc', help='Delete malloc backend')
|
|
p.add_argument('name', help='malloc bdev name')
|
|
p.set_defaults(func=malloc_delete)
|