mirror of
https://github.com/torvalds/linux.git
synced 2024-11-25 13:41:51 +00:00
1504b6f97b
tracing_events__opendir() allows iteration over files in <debugfs>/tracing/events but with an arbitrary sort order. Add a scandir alternative where the results are alphabetically sorted. Signed-off-by: Ian Rogers <irogers@google.com> Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Caleb Biggers <caleb.biggers@intel.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Kajol Jain <kjain@linux.ibm.com> Cc: Kan Liang <kan.liang@linux.intel.com> Cc: Leo Yan <leo.yan@linaro.org> Cc: Mark Rutland <mark.rutland@arm.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Perry Taylor <perry.taylor@intel.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Ravi Bangoria <ravi.bangoria@amd.com> Cc: Rob Herring <robh@kernel.org> Cc: Sandipan Das <sandipan.das@amd.com> Cc: Stephane Eranian <eranian@google.com> Cc: Weilin Wang <weilin.wang@intel.com> Cc: Xin Gao <gaoxin@cdjrlc.com> Cc: Xing Zhengjun <zhengjun.xing@linux.intel.com> Link: http://lore.kernel.org/lkml/20221114210723.2749751-4-irogers@google.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
24 lines
696 B
C
24 lines
696 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __API_FS_TRACING_PATH_H
|
|
#define __API_FS_TRACING_PATH_H
|
|
|
|
#include <linux/types.h>
|
|
#include <dirent.h>
|
|
|
|
DIR *tracing_events__opendir(void);
|
|
int tracing_events__scandir_alphasort(struct dirent ***namelist);
|
|
|
|
void tracing_path_set(const char *mountpoint);
|
|
const char *tracing_path_mount(void);
|
|
|
|
char *get_tracing_file(const char *name);
|
|
void put_tracing_file(char *file);
|
|
|
|
char *get_events_file(const char *name);
|
|
void put_events_file(char *file);
|
|
|
|
#define zput_events_file(ptr) ({ free(*ptr); *ptr = NULL; })
|
|
|
|
int tracing_path__strerror_open_tp(int err, char *buf, size_t size, const char *sys, const char *name);
|
|
#endif /* __API_FS_TRACING_PATH_H */
|