mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	There we need just forward declarations, so remove it and add it just on the .c files that actually touch the struct definitions. Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Namhyung Kim <namhyung@kernel.org> Link: https://lkml.kernel.org/n/tip-wsjxzt99p83jubt6hu0med0f@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
		
			
				
	
	
		
			60 lines
		
	
	
	
		
			2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
	
		
			2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0 */
 | 
						|
#ifndef PERF_BUILD_ID_H_
 | 
						|
#define PERF_BUILD_ID_H_ 1
 | 
						|
 | 
						|
#define BUILD_ID_SIZE	20
 | 
						|
#define SBUILD_ID_SIZE	(BUILD_ID_SIZE * 2 + 1)
 | 
						|
 | 
						|
#include "tool.h"
 | 
						|
#include <linux/types.h>
 | 
						|
 | 
						|
struct nsinfo;
 | 
						|
 | 
						|
extern struct perf_tool build_id__mark_dso_hit_ops;
 | 
						|
struct dso;
 | 
						|
struct feat_fd;
 | 
						|
 | 
						|
int build_id__sprintf(const u8 *build_id, int len, char *bf);
 | 
						|
int sysfs__sprintf_build_id(const char *root_dir, char *sbuild_id);
 | 
						|
int filename__sprintf_build_id(const char *pathname, char *sbuild_id);
 | 
						|
char *build_id_cache__kallsyms_path(const char *sbuild_id, char *bf,
 | 
						|
				    size_t size);
 | 
						|
 | 
						|
char *dso__build_id_filename(const struct dso *dso, char *bf, size_t size,
 | 
						|
			     bool is_debug);
 | 
						|
 | 
						|
int build_id__mark_dso_hit(struct perf_tool *tool, union perf_event *event,
 | 
						|
			   struct perf_sample *sample, struct perf_evsel *evsel,
 | 
						|
			   struct machine *machine);
 | 
						|
 | 
						|
int dsos__hit_all(struct perf_session *session);
 | 
						|
 | 
						|
bool perf_session__read_build_ids(struct perf_session *session, bool with_hits);
 | 
						|
int perf_session__write_buildid_table(struct perf_session *session,
 | 
						|
				      struct feat_fd *fd);
 | 
						|
int perf_session__cache_build_ids(struct perf_session *session);
 | 
						|
 | 
						|
char *build_id_cache__origname(const char *sbuild_id);
 | 
						|
char *build_id_cache__linkname(const char *sbuild_id, char *bf, size_t size);
 | 
						|
char *build_id_cache__cachedir(const char *sbuild_id, const char *name,
 | 
						|
			       struct nsinfo *nsi, bool is_kallsyms,
 | 
						|
			       bool is_vdso);
 | 
						|
 | 
						|
struct strlist;
 | 
						|
 | 
						|
struct strlist *build_id_cache__list_all(bool validonly);
 | 
						|
char *build_id_cache__complement(const char *incomplete_sbuild_id);
 | 
						|
int build_id_cache__list_build_ids(const char *pathname, struct nsinfo *nsi,
 | 
						|
				   struct strlist **result);
 | 
						|
bool build_id_cache__cached(const char *sbuild_id);
 | 
						|
int build_id_cache__add_s(const char *sbuild_id,
 | 
						|
			  const char *name, struct nsinfo *nsi,
 | 
						|
			  bool is_kallsyms, bool is_vdso);
 | 
						|
int build_id_cache__remove_s(const char *sbuild_id);
 | 
						|
 | 
						|
extern char buildid_dir[];
 | 
						|
 | 
						|
void set_buildid_dir(const char *dir);
 | 
						|
void disable_buildid_cache(void);
 | 
						|
 | 
						|
#endif
 |