mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-17 05:45:20 +00:00
e4bb4caa54
The passed dso_id is copied and so is never an out argument. Remove its mutability. Signed-off-by: Ian Rogers <irogers@google.com> Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Anne Macedo <retpolanne@posteo.net> Cc: Arnd Bergmann <arnd@arndb.de> Cc: Athira Rajeev <atrajeev@linux.vnet.ibm.com> Cc: Casey Chen <cachen@purestorage.com> Cc: Chaitanya S Prakash <chaitanyas.prakash@arm.com> Cc: Colin Ian King <colin.i.king@gmail.com> Cc: Dominique Martinet <asmadeus@codewreck.org> Cc: Ingo Molnar <mingo@redhat.com> Cc: James Clark <james.clark@linaro.org> Cc: Jann Horn <jannh@google.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Kan Liang <kan.liang@linux.intel.com> Cc: Mark Rutland <mark.rutland@arm.com> Cc: Masahiro Yamada <masahiroy@kernel.org> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Sun Haiyong <sunhaiyong@loongson.cn> Cc: Weilin Wang <weilin.wang@intel.com> Cc: Yang Jihong <yangjihong1@huawei.com> Cc: Yunseong Kim <yskelg@gmail.com> Cc: Ze Gao <zegao2021@gmail.com> Link: https://lore.kernel.org/r/20240817064442.2152089-5-irogers@google.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
53 lines
1.4 KiB
C
53 lines
1.4 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __PERF_DSOS
|
|
#define __PERF_DSOS
|
|
|
|
#include <stdbool.h>
|
|
#include <stdio.h>
|
|
#include <linux/list.h>
|
|
#include <linux/rbtree.h>
|
|
#include "rwsem.h"
|
|
|
|
struct dso;
|
|
struct dso_id;
|
|
struct kmod_path;
|
|
struct machine;
|
|
|
|
/*
|
|
* Collection of DSOs as an array for iteration speed, but sorted for O(n)
|
|
* lookup.
|
|
*/
|
|
struct dsos {
|
|
struct rw_semaphore lock;
|
|
struct dso **dsos;
|
|
unsigned int cnt;
|
|
unsigned int allocated;
|
|
bool sorted;
|
|
};
|
|
|
|
void dsos__init(struct dsos *dsos);
|
|
void dsos__exit(struct dsos *dsos);
|
|
|
|
int __dsos__add(struct dsos *dsos, struct dso *dso);
|
|
int dsos__add(struct dsos *dsos, struct dso *dso);
|
|
struct dso *dsos__find(struct dsos *dsos, const char *name, bool cmp_short);
|
|
|
|
struct dso *dsos__findnew_id(struct dsos *dsos, const char *name, const struct dso_id *id);
|
|
|
|
bool dsos__read_build_ids(struct dsos *dsos, bool with_hits);
|
|
|
|
size_t dsos__fprintf_buildid(struct dsos *dsos, FILE *fp,
|
|
bool (skip)(struct dso *dso, int parm), int parm);
|
|
size_t dsos__fprintf(struct dsos *dsos, FILE *fp);
|
|
|
|
int dsos__hit_all(struct dsos *dsos);
|
|
|
|
struct dso *dsos__findnew_module_dso(struct dsos *dsos, struct machine *machine,
|
|
struct kmod_path *m, const char *filename);
|
|
|
|
struct dso *dsos__find_kernel_dso(struct dsos *dsos);
|
|
|
|
int dsos__for_each_dso(struct dsos *dsos, int (*cb)(struct dso *dso, void *data), void *data);
|
|
|
|
#endif /* __PERF_DSOS */
|