/spdk/module/bdev/ocf/ |
H A D | vbdev_ocf_rpc.c | 126 goto end; in rpc_bdev_ocf_delete() 133 goto end; in rpc_bdev_ocf_delete() 141 goto end; in rpc_bdev_ocf_delete() 144 end: in rpc_bdev_ocf_delete() 162 goto end; in rpc_bdev_ocf_get_stats_cmpl() 170 goto end; in rpc_bdev_ocf_get_stats_cmpl() 177 end: in rpc_bdev_ocf_get_stats_cmpl() 198 goto end; in rpc_bdev_ocf_get_stats() 207 goto end; in rpc_bdev_ocf_get_stats() 215 goto end; in rpc_bdev_ocf_get_stats() [all …]
|
H A D | volume.c |
|
/spdk/scripts/vagrant/ |
H A D | Vagrantfile | 25 end 34 end 48 end 49 end 56 end 73 end 80 end 95 end 96 end 103 end [all …]
|
/spdk/lib/event/ |
H A D | log_rpc.c | 85 goto end; in rpc_log_set_print_level() 93 goto end; in rpc_log_set_print_level() 98 end: in rpc_log_set_print_level() 146 goto end; in rpc_log_set_level() 154 goto end; in rpc_log_set_level() 160 end: in rpc_log_set_level() 205 goto end; in rpc_log_set_flag() 212 goto end; in rpc_log_set_flag() 216 end: in rpc_log_set_flag() 232 goto end; in rpc_log_clear_flag() [all...] |
H A D | app_rpc.c | 352 #define GET_DELTA(end, start) (end >= start ? end - start : 0) argument 483 goto end; in rpc_framework_set_scheduler() 499 goto end; in rpc_framework_set_scheduler() 511 goto end; in rpc_framework_set_scheduler() 516 end: in rpc_framework_set_scheduler() 645 goto end; 653 goto end; 658 goto end; in rpc_thread_set_cpumask() [all...] |
/spdk/include/spdk_internal/ |
H A D | utf.h | 28 utf8_valid(const uint8_t *start, const uint8_t *end) in utf8_valid() argument 33 if (p == end) { in utf8_valid() 48 if (++p == end) { in utf8_valid() 62 if (++p == end) { in utf8_valid() 88 if (++p == end) { in utf8_valid() 230 utf16le_valid(const uint16_t *start, const uint16_t *end) in utf16le_valid() argument 235 if (p == end) { in utf16le_valid() 253 if (++p == end) { in utf16le_valid()
|
/spdk/lib/util/ |
H A D | cpuset.c | 194 char *end; in parse_list() local 203 end = (char *)ptr; in parse_list() 213 lcore = strtoul(ptr, &end, 10); in parse_list() 224 while (isblank(*end)) { in parse_list() 225 end++; in parse_list() 228 if (*end == '-') { in parse_list() 230 } else if (*end == ',' || *end == ']') { in parse_list() 248 ptr = end + 1; in parse_list() 250 } while (*end != ']'); in parse_list() 255 if (*end == '\0') { in parse_list() [all …]
|
/spdk/test/unit/include/spdk/histogram_data.h/ |
H A D | histogram_ut.c | 25 check_values(void *ctx, uint64_t start, uint64_t end, uint64_t count, in check_values() argument 41 end--; in check_values() 49 CU_ASSERT(**values <= end); in check_values() 53 if (*values == g_values_end || **values > end) { in check_values()
|
/spdk/doc/ |
H A D | vhost_processing.md | 54 > The protocol defines 2 sides of the communication, front-end and back-end. 55 > The front-end is the application that shares its virtqueues, in our case QEMU. 56 > The back-end is the consumer of the virtqueues. 58 > In the current implementation QEMU is the front-end, and the back-end is 61 > device back-end processing read and write to a virtual disk. 63 > The front-end and back-end can be either a client (i.e. connecting) or 66 SPDK vhost is a Vhost-user back-end server. It exposes Unix domain sockets and 81 the front-end and the back-end expose a list of their implemented features and 99 The front-end will send new memory regions after each memory change - usually 121 The front-end sends I/O by allocating proper buffers in shared memory, filling
|
/spdk/lib/jsonrpc/ |
H A D | jsonrpc_client.c | 58 void *end = NULL; in jsonrpc_parse_response() local 62 rc = spdk_json_parse(client->recv_buf, client->recv_offset, NULL, 0, &end, 0); in jsonrpc_parse_response() 100 rc = spdk_json_parse(r->buf, buf_len, r->values, values_cnt, &end, in jsonrpc_parse_response() 107 assert(end != NULL); in jsonrpc_parse_response()
|
H A D | jsonrpc_server.c | 176 void *end = NULL; in jsonrpc_parse_request() local 180 rc = spdk_json_parse((void *)json, size, NULL, 0, &end, 0); in jsonrpc_parse_request() 198 len = end - json; in jsonrpc_parse_request() 252 rc = spdk_json_parse(request->recv_buffer, size, request->values, request->values_cnt, &end, in jsonrpc_parse_request() 260 assert(end != NULL); in jsonrpc_parse_request()
|
/spdk/lib/json/ |
H A D | json_parse.c | 400 match_literal(const uint8_t *start, const uint8_t *end, const uint8_t *literal, size_t len) in match_literal() argument 402 assert(end >= start); in match_literal() 403 if ((size_t)(end - start) < len) { in match_literal() 416 void **end, uint32_t flags) in spdk_json_parse() argument 621 if (end) { in spdk_json_parse() 622 *end = data; in spdk_json_parse() 632 if (end) { in spdk_json_parse() 633 *end = data; in spdk_json_parse()
|
H A D | json_write.c | 395 const uint8_t *end = val + len; in write_string_or_name() local 399 while (p != end) { in write_string_or_name() 403 codepoint_len = utf8_valid(p, end); in write_string_or_name() 432 const uint16_t *end = val + len; in write_string_or_name_utf16le() local 436 while (p != end) { in write_string_or_name_utf16le() 440 codepoint_len = utf16le_valid(p, end); in write_string_or_name_utf16le()
|
/spdk/test/nvme/overhead/ |
H A D | overhead.c | 318 uint64_t end, tsc_complete; in check_io() local 330 end = spdk_get_ticks(); in check_io() 340 if (g_ns->type == ENTRY_TYPE_NVME_NS || (end - g_complete_tsc_start) < 500) { in check_io() 341 g_complete_tsc_start = end; in check_io() 344 tsc_complete = end - g_complete_tsc_start; in check_io() 359 end = g_complete_tsc_start = spdk_get_ticks(); in check_io() 362 return end; in check_io() 479 print_bucket(void *ctx, uint64_t start, uint64_t end, uint64_t count, in print_bucket() argument 492 (double)end * 1000 * 1000 / g_tsc_rate, in print_bucket()
|
/spdk/test/app/jsoncat/ |
H A D | jsoncat.c | 55 void *buf, *end; in process_file() local 82 rc = spdk_json_parse(buf, size, values, num_values, &end, in process_file() 103 if (end != buf + size) { in process_file()
|
/spdk/scripts/ |
H A D | histogram.py | 45 end = bucket * 1000 * 1000 / tsc_rate variable 48 print("%9.3f - %9.3f: %9.4f%% (%9u)" % (start, end, so_far_pct, count))
|
/spdk/examples/util/zipf/ |
H A D | zipf.c | 18 print_bucket(void *ctx, uint64_t start, uint64_t end, uint64_t count, in print_bucket() argument 29 snprintf(range, sizeof(range), "[%ju, %ju)", start, end); in print_bucket()
|
/spdk/module/bdev/gpt/ |
H A D | vbdev_gpt.c | 411 goto end; in gpt_read_secondary_table_complete() 417 goto end; in gpt_read_secondary_table_complete() 429 end: in gpt_read_secondary_table_complete() 468 goto end; in gpt_bdev_complete() 474 goto end; in gpt_bdev_complete() 483 goto end; in gpt_bdev_complete() 494 end: in gpt_bdev_complete()
|
/spdk/lib/ftl/utils/ |
H A D | ftl_bitmap.c | 131 size_t i, end; in ftl_bitmap_find_first() local 144 end = spdk_min((end_bit >> FTL_BITMAP_WORD_SHIFT) + 1, bitmap->size); in ftl_bitmap_find_first() 145 for (i = i + 1; i < end; i++) { in ftl_bitmap_find_first()
|
/spdk/module/sock/ |
H A D | sock_kernel.h |
|
/spdk/lib/ftl/mngt/ |
H A D | ftl_mngt_self_test.c | 72 uint64_t lba, end; in test_valid_map_pin_cb() local 81 end = pin_ctx->lba + pin_ctx->count; in test_valid_map_pin_cb() 83 for (; lba < end; ++lba) { in test_valid_map_pin_cb()
|
/spdk/test/app/fuzz/iscsi_fuzz/ |
H A D | README.md | 10 3. iSCSI initiator send a logout request PDU to iSCSI Target in the end. 26 At the end of each test run, a summary is printed in the following format:
|
/spdk/module/bdev/lvol/ |
H A D | vbdev_lvol.c | 181 goto end; in _vbdev_lvs_create_cb() 188 goto end; in _vbdev_lvs_create_cb() 196 goto end; in _vbdev_lvs_create_cb() 205 end: in _vbdev_lvs_create_cb() 749 goto end; in vbdev_lvol_dump_info_json() 789 goto end; in vbdev_lvol_dump_info_json() 823 end: in vbdev_lvol_io_type_supported() 1220 goto end; in vbdev_lvol_create() 1225 end: 1567 goto end; in create_esnap_clone_lvol_disks() [all...] |
/spdk/lib/nvme/ |
H A D | nvme_tcp.c | 928 goto end; in nvme_tcp_req_complete_safe() 952 end: in nvme_tcp_qpair_cmd_send_complete() 1479 goto end; in nvme_tcp_accel_recv_compute_crc32() 1487 goto end; in nvme_tcp_accel_recv_compute_crc32() 1495 goto end; in nvme_tcp_accel_recv_compute_crc32() 1534 end: in nvme_tcp_pdu_payload_handle() 1556 goto end; in nvme_tcp_send_icreq_complete() 1581 end: in nvme_tcp_icresp_handle() 1597 goto end; in nvme_tcp_icresp_handle() 1605 end in nvme_tcp_icresp_handle() [all...] |
H A D | nvme_opal.c | 1785 goto end; in spdk_opal_cmd_take_ownership() 1792 goto end; in spdk_opal_cmd_take_ownership() 1798 goto end; in spdk_opal_cmd_take_ownership() 1808 goto end; in spdk_opal_cmd_take_ownership() 1816 goto end; in spdk_opal_cmd_take_ownership() 1824 end: in spdk_opal_cmd_take_ownership() 2072 goto end; in spdk_opal_cmd_revert_tper() 2079 goto end; in spdk_opal_cmd_revert_tper() 2089 end: in spdk_opal_cmd_revert_tper() 2122 goto end; in spdk_opal_cmd_activate_locking_sp() [all …]
|