lib/event: add in_interrupt in rpc
add in_interrupt in framework_get_reactors. Change-Id: I7137aa604129cfd26acd2dec4ae9ca545c7e4348 Signed-off-by: Richael Zhuang <richael.zhuang@arm.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/8552 Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com> Community-CI: Mellanox Build Bot Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Ziye Yang <ziye.yang@intel.com> Reviewed-by: Aleksey Marchuk <alexeymar@mellanox.com> Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com>
This commit is contained in:
parent
304153e5c7
commit
e258fe53a1
@ -820,6 +820,7 @@ Example response:
|
||||
"cpumask": "1",
|
||||
"busy": 139223208,
|
||||
"idle": 8641080608,
|
||||
"in_interrupt": false,
|
||||
"active_pollers_count": 1,
|
||||
"timed_pollers_count": 2,
|
||||
"paused_pollers_count": 0
|
||||
|
@ -398,6 +398,7 @@ _rpc_framework_get_reactors(void *arg1, void *arg2)
|
||||
spdk_json_write_named_uint32(ctx->w, "lcore", current_core);
|
||||
spdk_json_write_named_uint64(ctx->w, "busy", reactor->busy_tsc);
|
||||
spdk_json_write_named_uint64(ctx->w, "idle", reactor->idle_tsc);
|
||||
spdk_json_write_named_bool(ctx->w, "in_interrupt", reactor->in_interrupt);
|
||||
governor = _spdk_governor_get();
|
||||
/* We need to check whether governor can return current core frequency. */
|
||||
if (governor->get_core_curr_freq != NULL) {
|
||||
|
Loading…
Reference in New Issue
Block a user