Home
last modified time | relevance | path

Searched refs:run_count (Results 1 – 4 of 4) sorted by relevance

/spdk/include/spdk_internal/
H A Dthread.h15 uint64_t run_count; member
/spdk/app/spdk_top/
H A Dspdk_top.c227 uint64_t run_count; member
372 {"run_count", offsetof(struct rpc_poller_info, run_count), spdk_json_decode_uint64},
850 count1 = poller1->run_count - get_last_run_counter(poller1->id, poller1->thread_id); in subsort_pollers()
851 count2 = poller2->run_count - get_last_run_counter(poller2->id, poller2->thread_id); in subsort_pollers()
853 count1 = poller1->run_count; in subsort_pollers()
854 count2 = poller2->run_count; in subsort_pollers()
930 g_pollers_info[i].run_count, g_pollers_info[i].busy_count); in get_pollers_data()
1492 char run_count[MAX_POLLER_RUN_COUNT], period_ticks[MAX_PERIOD_STR_LEN], in draw_poller_tab_row() local
1522 snprintf(run_count, MAX_POLLER_RUN_COUNT, "%" PRIu64, in draw_poller_tab_row()
1523 g_pollers_info[current_row].run_count - last_run_counter); in draw_poller_tab_row()
[all …]
/spdk/lib/thread/
H A Dthread.c81 uint64_t run_count;
992 poller->run_count++; in thread_execute_poller()
1053 poller->run_count++; in thread_execute_timed_poller()
1974 stats->run_count = poller->run_count; in spdk_thread_get_first_io_channel()
80 uint64_t run_count; global() member
/spdk/lib/event/
H A Dapp_rpc.c238 spdk_json_write_named_uint64(w, "run_count", stats.run_count); in rpc_get_poller()