Add rpc method trace_get_info to show name of shared memory file, list of the available trace point groups and mask of the available trace points for each group. Fixes #2747 Signed-off-by: Xinrui Mao <xinrui.mao@intel.com> Change-Id: I2098283bed454dc46644fd2ca1b9568ab2aea81b Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/15426 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Shuhei Matsumoto <smatsumoto@nvidia.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Xiaodong Liu <xiaodong.liu@intel.com> Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com> Community-CI: Mellanox Build Bot
19 lines
399 B
Makefile
19 lines
399 B
Makefile
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright (C) 2015 Intel Corporation.
|
|
# All rights reserved.
|
|
#
|
|
|
|
SPDK_ROOT_DIR := $(abspath $(CURDIR)/../..)
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.common.mk
|
|
|
|
SO_VER := 7
|
|
SO_MINOR := 1
|
|
|
|
C_SRCS = trace.c trace_flags.c trace_rpc.c
|
|
LIBNAME = trace
|
|
LOCAL_SYS_LIBS = -lrt
|
|
|
|
SPDK_MAP_FILE = $(abspath $(CURDIR)/spdk_trace.map)
|
|
|
|
include $(SPDK_ROOT_DIR)/mk/spdk.lib.mk
|