mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-14 07:18:04 +07:00
602e29fe07
PRINT_FMT_STING -> PRINT_FMT_STRING Link: https://lore.kernel.org/r/CAM9d7cj1LJ=QO8QxhBo_oDM9APpAswX4BbTwge0JhZ3Y4-Bv9w@mail.gmail.com Link: https://lore.kernel.org/linux-trace-devel/20200714103027.2477584-7-tz.stoyanov@gmail.com Link: https://lore.kernel.org/linux-trace-devel/20200716092014.2613403-7-tz.stoyanov@gmail.com Suggested-by: Namhyung Kim <namhyung@kernel.org> Signed-off-by: Tzvetomir Stoyanov (VMware) <tz.stoyanov@gmail.com> Acked-by: Namhyung Kim <namhyung@kernel.org> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: Jiri Olsa <jolsa@redhat.com> Cc: linux-trace-devel@vger.kernel.org Link: http://lore.kernel.org/lkml/20200722011755.442308322@goodmis.org Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
114 lines
2.3 KiB
C
114 lines
2.3 KiB
C
// SPDX-License-Identifier: LGPL-2.1
|
|
/*
|
|
* Copyright (C) 2009, 2010 Red Hat Inc, Steven Rostedt <srostedt@redhat.com>
|
|
*
|
|
*/
|
|
|
|
#ifndef _PARSE_EVENTS_INT_H
|
|
#define _PARSE_EVENTS_INT_H
|
|
|
|
struct tep_cmdline;
|
|
struct cmdline_list;
|
|
struct func_map;
|
|
struct func_list;
|
|
struct event_handler;
|
|
struct func_resolver;
|
|
struct tep_plugins_dir;
|
|
|
|
struct tep_handle {
|
|
int ref_count;
|
|
|
|
int header_page_ts_offset;
|
|
int header_page_ts_size;
|
|
int header_page_size_offset;
|
|
int header_page_size_size;
|
|
int header_page_data_offset;
|
|
int header_page_data_size;
|
|
int header_page_overwrite;
|
|
|
|
enum tep_endian file_bigendian;
|
|
enum tep_endian host_bigendian;
|
|
|
|
int old_format;
|
|
|
|
int cpus;
|
|
int long_size;
|
|
int page_size;
|
|
|
|
struct tep_cmdline *cmdlines;
|
|
struct cmdline_list *cmdlist;
|
|
int cmdline_count;
|
|
|
|
struct func_map *func_map;
|
|
struct func_resolver *func_resolver;
|
|
struct func_list *funclist;
|
|
unsigned int func_count;
|
|
|
|
struct printk_map *printk_map;
|
|
struct printk_list *printklist;
|
|
unsigned int printk_count;
|
|
|
|
struct tep_event **events;
|
|
int nr_events;
|
|
struct tep_event **sort_events;
|
|
enum tep_event_sort_type last_type;
|
|
|
|
int type_offset;
|
|
int type_size;
|
|
|
|
int pid_offset;
|
|
int pid_size;
|
|
|
|
int pc_offset;
|
|
int pc_size;
|
|
|
|
int flags_offset;
|
|
int flags_size;
|
|
|
|
int ld_offset;
|
|
int ld_size;
|
|
|
|
int test_filters;
|
|
|
|
int flags;
|
|
|
|
struct tep_format_field *bprint_ip_field;
|
|
struct tep_format_field *bprint_fmt_field;
|
|
struct tep_format_field *bprint_buf_field;
|
|
|
|
struct event_handler *handlers;
|
|
struct tep_function_handler *func_handlers;
|
|
|
|
/* cache */
|
|
struct tep_event *last_event;
|
|
|
|
struct tep_plugins_dir *plugins_dir;
|
|
};
|
|
|
|
enum tep_print_parse_type {
|
|
PRINT_FMT_STRING,
|
|
PRINT_FMT_ARG_DIGIT,
|
|
PRINT_FMT_ARG_POINTER,
|
|
PRINT_FMT_ARG_STRING,
|
|
};
|
|
|
|
struct tep_print_parse {
|
|
struct tep_print_parse *next;
|
|
|
|
char *format;
|
|
int ls;
|
|
enum tep_print_parse_type type;
|
|
struct tep_print_arg *arg;
|
|
struct tep_print_arg *len_as_arg;
|
|
};
|
|
|
|
void tep_free_event(struct tep_event *event);
|
|
void tep_free_format_field(struct tep_format_field *field);
|
|
void tep_free_plugin_paths(struct tep_handle *tep);
|
|
|
|
unsigned short tep_data2host2(struct tep_handle *tep, unsigned short data);
|
|
unsigned int tep_data2host4(struct tep_handle *tep, unsigned int data);
|
|
unsigned long long tep_data2host8(struct tep_handle *tep, unsigned long long data);
|
|
|
|
#endif /* _PARSE_EVENTS_INT_H */
|