| /spdk/test/nvme/ |
| H A D | nvme_rpc_timeouts.sh | 29 echo Checking default timeout settings: 34 $rpc_py bdev_nvme_set_options --timeout-us=12000000 --timeout-admin-us=24000000 --action-on-timeout…
|
| /spdk/python/spdk/rpc/ |
| H A D | client.py | 44 def __init__(self, addr, port=None, timeout=None, **kwargs): argument 54 self.timeout = timeout if timeout is not None else 60.0 164 timeout = self.timeout - (time.process_time() - start_time) 165 self.sock.settimeout(timeout) 173 except socket.timeout: 187 if self.timeout <= 0: 188 raise JSONRPCException("Timeout value is invalid: %s\n" % self.timeout)
|
| /spdk/scripts/ |
| H A D | sync_dev_uevents.sh | 93 timeout=${UEVENT_TIMEOUT:-10} 163 while ((timeout-- && $(< /sys/kernel/uevent_seqnum) + 1 != $(< /dev/mdev.seq))); do 166 if ((timeout < 0)); then 175 sleep "${timeout}s"
|
| H A D | sma.py | 104 def wait_for_listen(client, timeout): argument 116 if time.monotonic() > start + timeout: 143 wait_for_listen(client, timeout=60.0)
|
| /spdk/lib/jsonrpc/ |
| H A D | jsonrpc_client_tcp.c | 121 jsonrpc_client_poll(struct spdk_jsonrpc_client *client, int timeout) in jsonrpc_client_poll() argument 126 rc = poll(&pfd, 1, timeout); in jsonrpc_client_poll() 155 jsonrpc_client_poll_connecting(struct spdk_jsonrpc_client *client, int timeout) in jsonrpc_client_poll_connecting() argument 165 rc = poll(&pfd, 1, timeout); in jsonrpc_client_poll_connecting() 350 spdk_jsonrpc_client_poll(struct spdk_jsonrpc_client *client, int timeout) in spdk_jsonrpc_client_poll() argument 353 return jsonrpc_client_poll(client, timeout); in spdk_jsonrpc_client_poll() 355 return jsonrpc_client_poll_connecting(client, timeout); in spdk_jsonrpc_client_poll()
|
| /spdk/test/nvmf/host/ |
| H A D | timeout.sh | 48 --ctrlr-loss-timeout-sec 5 --reconnect-delay-sec 2 81 --ctrlr-loss-timeout-sec 5 --fast-io-fail-timeout-sec 2 --reconnect-delay-sec 1 122 --ctrlr-loss-timeout-sec 5 --reconnect-delay-sec 2
|
| H A D | discovery_remove_ifc.sh | 70 -s $discovery_port -f ipv4 -q $host_nqn --ctrlr-loss-timeout-sec 2 \ 71 --reconnect-delay-sec 1 --fast-io-fail-timeout-sec 1 --wait-for-attach
|
| /spdk/test/ftl/ |
| H A D | bdevperf.sh | 15 timeout=240 26 $rpc_py -t $timeout bdev_ftl_create -b ftl0 -d $split_bdev $use_append -c $nv_cache --l2p_dram_limit $l2p_dram_size_mb
|
| H A D | fio.sh | 27 timeout=240 60 …$rpc_py -t $timeout bdev_ftl_create -b ftl0 -d $split_bdev -c $nv_cache --l2p_dram_limit $l2p_dram…
|
| H A D | restore.sh | 25 timeout=240 58 $rpc_py -t $timeout $ftl_construct_args
|
| H A D | write_after_write.sh | 24 timeout=240 47 $rpc_py -t $timeout bdev_ftl_create -b ftl0 -d $split_bdev -c $nv_cache --l2p_dram_limit $l2p_dram_…
|
| H A D | trim.sh | 25 timeout=240 49 $rpc_py -t $timeout bdev_ftl_create -b ftl0 -d $split_bdev -c $nv_cache --core_mask 7 --l2p_dram_li…
|
| H A D | dirty_shutdown.sh | 24 timeout=240 61 $rpc_py -t $timeout $ftl_construct_args
|
| /spdk/test/unit/lib/idxd/idxd_user.c/ |
| H A D | idxd_user_ut.c | 186 int timeout = 1; in test_idxd_wait_cmd() local 195 rc = idxd_wait_cmd(&user_idxd, timeout); in test_idxd_wait_cmd() 200 rc = idxd_wait_cmd(&user_idxd, timeout); in test_idxd_wait_cmd() 206 rc = idxd_wait_cmd(&user_idxd, timeout); in test_idxd_wait_cmd()
|
| /spdk/test/vhost/migration/ |
| H A D | migration-tc1.sh | 103 local timeout=20 107 if ((timeout-- == 0)); then
|
| H A D | migration-tc2.sh | 156 local timeout=20 160 if ((timeout-- == 0)); then
|
| /spdk/lib/ioat/ |
| H A D | ioat.c | 235 int timeout; in ioat_reset_hw() local 245 timeout = 20; /* in milliseconds */ in ioat_reset_hw() 248 timeout--; in ioat_reset_hw() 249 if (timeout == 0) { in ioat_reset_hw() 277 timeout = 20; in ioat_reset_hw() 280 timeout--; in ioat_reset_hw() 281 if (timeout == 0) { in ioat_reset_hw()
|
| /spdk/lib/util/ |
| H A D | fd_group.c | 592 spdk_fd_group_wait(struct spdk_fd_group *fgrp, int timeout) 605 if (timeout < 0) { 606 SPDK_ERRLOG("Calling spdk_fd_group_wait on a group nested in another group without a timeout will block indefinitely.\n"); 615 nfds = epoll_wait(fgrp->epfd, events, totalfds, timeout); 779 spdk_fd_group_wait(struct spdk_fd_group *fgrp, int timeout) 422 spdk_fd_group_wait(struct spdk_fd_group * fgrp,int timeout) spdk_fd_group_wait() argument 547 spdk_fd_group_wait(struct spdk_fd_group * fgrp,int timeout) spdk_fd_group_wait() argument
|
| /spdk/python/spdk/sma/ |
| H A D | qmp.py | 69 :param timeout: timeout in seconds to use for the connection 75 timeout: float = 8.0): 78 self._timeout = timeout 83 self._socket.settimeout(timeout) 186 raise QMPSocketError('Send: got socket timeout error') from e 200 :raise QMPSocketError: on timeout or socket errors
|
| /spdk/test/nvmf/target/ |
| H A D | multipath.sh | 22 local timeout=20 26 if ((timeout-- == 0)); then
|
| /spdk/lib/iscsi/ |
| H A D | iscsi_subsystem.c | 263 SPDK_DEBUGLOG(iscsi, "Timeout %d\n", g_iscsi.timeout); in iscsi_log_globals() 314 opts->timeout = DEFAULT_TIMEOUT; in iscsi_opts_init() 393 dst->timeout = src->timeout; in iscsi_opts_copy() 466 if (opts->timeout < 0) { in iscsi_opts_verify() 467 SPDK_ERRLOG("%d is invalid. timeout must not be less than 0\n", opts->timeout); in iscsi_opts_verify() 545 g_iscsi.timeout = opts->timeout; in iscsi_set_global_params() 1246 spdk_json_write_named_int32(w, "nop_timeout", g_iscsi.timeout); in iscsi_opts_info_json() [all...] |
| /spdk/test/fuzz/ |
| H A D | autofuzz.sh | 63 --timeout=*)
|
| H A D | autofuzz_nvmf.sh | 16 --timeout=*)
|
| H A D | autofuzz_iscsi.sh | 33 --timeout=*)
|
| /spdk/test/nvme/overhead/ |
| H A D | overhead.c | 241 struct timespec timeout; in aio_check_io() local 243 timeout.tv_sec = 0; in aio_check_io() 244 timeout.tv_nsec = 0; in aio_check_io() 246 count = io_getevents(g_ns->u.aio.ctx, 1, 1, g_ns->u.aio.events, &timeout); in aio_check_io()
|