| /spdk/scripts/ |
| H A D | rpc.py | 37 help='RPC domain socket path or IP address', default='/var/tmp/spdk.sock') 39 help='RPC port number (if server_addr is IP address)', 42 help='Timeout as a floating point number expressed in seconds waiting for response. Default: 60.0', 45 help='Retry connecting to the RPC server N times with 0.2s interval. Default: 0', 48 help='Set verbose mode to INFO', default="ERROR") 50 help="""Set verbose level. """) 51 parser.add_argument('--dry-run', dest='dry_run', action='store_true', help="Display request and exit") 53 parser.add_argument('--go-client', dest='go_client', action='store_true', help="Use Go client") 56 help="Start listening on stdin, parse each line as a regular rpc.py execution and create \ 63 parser.add_argument('--plugin', dest='rpc_plugin', help [all...] |
| H A D | rpc_http_proxy.py | 28 parser.add_argument('host', help='Host name / IP representing proxy server') 29 parser.add_argument('port', help='Port number', type=int) 30 parser.add_argument('user', help='User name used for authentication') 31 parser.add_argument('password', help='Password used for authentication') 32 parser.add_argument('-s', dest='sock', help='RPC domain socket path', default='/var/tmp/spdk.sock') 33 parser.add_argument('-c', dest='cert', help='SSL certificate')
|
| H A D | iostat.py | 392 action='store_true', help="Only display cpu status", 396 action='store_true', help="Only display Blockdev io stats", 400 action='store_true', help="Display drive stats in KiB", 404 action='store_true', help="Display drive stats in MiB", 408 action='store_true', help='Use uptime or spdk ticks(default) as \ 413 type=check_positive, help='Time interval (in seconds) on which \ 418 type=check_positive, help='The number of second to display stats \ 423 help='RPC domain socket path or IP address', 427 help='RPC port number (if server_addr is IP address)', 431 help="Name of the Blockdev. Example: Nvme0n1", required=False) [all …]
|
| H A D | spdkcli.py | 47 help='RPC domain socket path or IP address', default='/var/tmp/spdk.sock') 49 help='RPC port number (if server_addr is IP address)', 51 …parser.add_argument("-v", dest="verbose", help="Print request/response JSON for configuration call… 54 help="commands to execute by SPDKCli as one-line command")
|
| H A D | sma.py | 33 parser.add_argument('--address', '-a', help='IP address to listen on') 34 parser.add_argument('--socket', '-s', help='SPDK RPC socket') 35 parser.add_argument('--port', '-p', type=int, help='IP port to listen on') 36 parser.add_argument('--config', '-c', help='Path to config file')
|
| H A D | spdk-gpt.py | 65 parser.add_argument('block', type=str, help='block device to check') 66 parser.add_argument('-e', '--entry', dest='entry', help='GPT partition entry',
|
| H A D | sync_dev_uevents.sh | 10 help() { function 88 help
|
| H A D | sma-client.py | 57 help='IP address of SMA instance to connect to') 59 help='Port number of SMA instance to connect to')
|
| H A D | calc-iobuf.py | 256 …parser.add_argument('--core-mask', '-m', help='Core mask', type=lambda v: int(v, 0), required=True) 257 parser.add_argument('--format', '-f', help='Output format (json, text)', default='text') 259 group.add_argument('--config', '-c', help='Config file') 260 group.add_argument('--interactive', '-i', help='Instead of using a config file as input, user '
|
| H A D | ledctl.sh | 25 if ! ledctl --help | grep -q -- "--set-slot"; then
|
| /spdk/test/app/fuzz/common/ |
| H A D | fuzz_rpc.py | 54 help='RPC domain socket path or IP address', default='/var/tmp/spdk.sock') 56 help='RPC port number (if server_addr is IP address)', 59 …help='Timeout as a floating point number expressed in seconds waiting for response. Default: 60.0', 62 help='Set verbose mode to INFO', default="ERROR") 64 help="""Set verbose level. """) 65 subparsers = parser.add_subparsers(help='RPC methods') 77 p = subparsers.add_parser('fuzz_vhost_create_dev', help="Add a new device to the vhost fuzzer.") 78 p.add_argument('-s', '--socket', help="Path to a valid unix domain socket for dev binding.") 79 …p.add_argument('-b', '--is-blk', help='The specified socket corresponds to a vhost-blk dev.', acti… 80 …p.add_argument('-u', '--use-bogus-buffer', help='Pass bogus buffer addresses with requests when fu… [all …]
|
| /spdk/test/event/scheduler/ |
| H A D | scheduler_plugin.py | 32 p = subparsers.add_parser('scheduler_thread_create', help='Create spdk thread') 33 p.add_argument('-n', '--name', help='Name of spdk thread and poller') 34 p.add_argument('-m', '--cpu_mask', help='CPU mask for spdk thread') 35 p.add_argument('-a', '--active', help='Percent of time thread is active', type=int) 38 …p = subparsers.add_parser('scheduler_thread_set_active', help='Change percent of time the spdk thr… 39 p.add_argument('thread_id', help='spdk_thread id', type=int) 40 p.add_argument('active', help='Percent of time thread is active', type=int) 43 p = subparsers.add_parser('scheduler_thread_delete', help='Delete spdk thread') 44 p.add_argument('thread_id', help='spdk_thread id', type=int)
|
| /spdk/test/rpc_plugins/ |
| H A D | scheduler_plugin.py | 32 p = subparsers.add_parser('scheduler_thread_create', help='Create spdk thread') 33 p.add_argument('-n', '--name', help='Name of spdk thread and poller') 34 p.add_argument('-m', '--cpu_mask', help='CPU mask for spdk thread') 35 p.add_argument('-a', '--active', help='Percent of time thread is active', type=int) 38 …p = subparsers.add_parser('scheduler_thread_set_active', help='Change percent of time the spdk thr… 39 p.add_argument('thread_id', help='spdk_thread id', type=int) 40 p.add_argument('active', help='Percent of time thread is active', type=int) 43 p = subparsers.add_parser('scheduler_thread_delete', help='Delete spdk thread') 44 p.add_argument('thread_id', help='spdk_thread id', type=int)
|
| H A D | rpc_plugin.py | 23 p = subparsers.add_parser('create_malloc', help='Create malloc backend') 26 p = subparsers.add_parser('delete_malloc', help='Delete malloc backend') 27 p.add_argument('name', help='malloc bdev name')
|
| /spdk/test/nvmf/target/ |
| H A D | multitarget_rpc.py | 26 help='RPC domain socket path or IP address', default='/var/tmp/spdk.sock') 28 help='RPC port number (if server_addr is IP address)', 31 …help='Timeout as a floating point number expressed in seconds waiting for response. Default: 60.0', 34 help='Set verbose mode to INFO', default="ERROR") 36 help="""Set verbose level. """) 37 subparsers = parser.add_subparsers(help='RPC methods') 44 p = subparsers.add_parser('nvmf_create_target', help='Create a new NVMe-oF target') 45 …p.add_argument('-n', '--name', help='Target name (unique to application)', type=str, required=True) 46 …p.add_argument('-s', '--max-subsystems', help='Max number of NVMf subsystems defaults to SPDK_NVMF… 54 p = subparsers.add_parser('nvmf_delete_target', help='Destroy the given NVMe-oF Target') [all …]
|
| /spdk/test/bdev/bdevio/ |
| H A D | tests.py | 49 help='RPC domain socket path or IP address', default='/var/tmp/spdk.sock') 51 help='RPC port number (if server_addr is IP address)', 54 …help='Timeout as a floating point number expressed in seconds waiting for response. Default: 60.0', 57 help='Set verbose mode to INFO', default="ERROR") 59 help="""Set verbose level. """) 60 subparsers = parser.add_subparsers(help='RPC methods') 65 p = subparsers.add_parser('perform_tests', help='Perform all bdevio tests on select bdev') 66 p.add_argument('-b', '--name', help="Name of the Blockdev. Example: Nvme0n1")
|
| /spdk/examples/interrupt_tgt/ |
| H A D | interrupt_plugin.py | 15 help="""Set reactor to interrupt or back to poll mode.""") 16 p.add_argument('lcore', type=int, help='lcore of the reactor') 18 help='Set reactor back to poll mode')
|
| /spdk/test/rpc/ |
| H A D | rpc_plugin.py | 23 p = subparsers.add_parser('create_malloc', help='Create malloc backend') 26 p = subparsers.add_parser('delete_malloc', help='Delete malloc backend') 27 p.add_argument('name', help='malloc bdev name')
|
| /spdk/test/json_config/ |
| H A D | clear_config.py | 181 help='Set verbose mode to INFO', default="ERROR") 183 help="""Set verbose level. """) 184 subparsers = parser.add_subparsers(help='RPC methods') 192 …p = subparsers.add_parser('clear_config', help="""Clear configuration of all SPDK subsystems and t… 206 …p = subparsers.add_parser('clear_subsystem', help="""Clear configuration of SPDK subsystem using J… 207 p.add_argument('--subsystem', help="""Subsystem name""")
|
| /spdk/scripts/perf/pm/ |
| H A D | collect-cpu-load | 13 help() { function 57 help
|
| H A D | collect-vmstat | 13 help() { 118 help 12 help() { global() function
|
| /spdk/scripts/bpf/ |
| H A D | gen.py | 51 parser.add_argument('-p', '--pid', type=int, required=True, help='PID of a traced process') 53 help='bpftrace scripts to process')
|
| /spdk/doc/ |
| H A D | getting_started.md | 13 Use `--help` to see information on installing dependencies for optional components. 46 ./configure --help 102 scripts/setup.sh help 107 with no arguments to see the help output. If your system has its IOMMU
|
| /spdk/examples/nvme/hotplug/ |
| H A D | hotplug_plugin.py | 14 help='Returns true when hotplug apps starts running IO')
|
| /spdk/ |
| H A D | autorun_post.py | 217 help="The location of your build's output directory") 219 help="The location of your spdk repository") 221 help="Do not check if all autotest.sh tests were executed.")
|