Home
last modified time | relevance | path

Searched refs:end (Results 1 – 25 of 69) sorted by relevance

123

/spdk/module/bdev/ocf/
H A Dvbdev_ocf_rpc.c126 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 Dvolume.c
/spdk/scripts/vagrant/
H A DVagrantfile25 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 Dlog_rpc.c85 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 Dapp_rpc.c352 #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 Dutf.h28 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 Dcpuset.c194 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 Dhistogram_ut.c25 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 Dvhost_processing.md54 > 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 Djsonrpc_client.c58 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 Djsonrpc_server.c176 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 Djson_parse.c400 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 Djson_write.c395 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 Doverhead.c318 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 Djsoncat.c55 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 Dhistogram.py45 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 Dzipf.c18 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 Dvbdev_gpt.c411 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 Dftl_bitmap.c131 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 Dsock_kernel.h
/spdk/lib/ftl/mngt/
H A Dftl_mngt_self_test.c72 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 DREADME.md10 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 Dvbdev_lvol.c181 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 Dnvme_tcp.c928 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 Dnvme_opal.c1785 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 …]

123