perf thread: Use function to add missing maps lock
authorIan Rogers <irogers@google.com>
Thu, 7 Dec 2023 01:16:44 +0000 (17:16 -0800)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Tue, 19 Dec 2023 00:35:16 +0000 (21:35 -0300)
Switch thread__prepare_access from loop macro maps__for_each_entry
to maps__for_each_map function that takes a callback. The function
holds the maps lock, which should be held during iteration.

Signed-off-by: Ian Rogers <irogers@google.com>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Athira Rajeev <atrajeev@linux.vnet.ibm.com>
Cc: Changbin Du <changbin.du@huawei.com>
Cc: Colin Ian King <colin.i.king@gmail.com>
Cc: Dmitrii Dolgov <9erthalion6@gmail.com>
Cc: German Gomez <german.gomez@arm.com>
Cc: Guilherme Amadio <amadio@gentoo.org>
Cc: Huacai Chen <chenhuacai@kernel.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: James Clark <james.clark@arm.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: K Prateek Nayak <kprateek.nayak@amd.com>
Cc: Kajol Jain <kjain@linux.ibm.com>
Cc: Kan Liang <kan.liang@linux.intel.com>
Cc: Leo Yan <leo.yan@linaro.org>
Cc: Li Dong <lidong@vivo.com>
Cc: Liam Howlett <liam.howlett@oracle.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Miguel Ojeda <ojeda@kernel.org>
Cc: Ming Wang <wangming01@loongson.cn>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Nick Terrell <terrelln@fb.com>
Cc: Paolo Bonzini <pbonzini@redhat.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Ravi Bangoria <ravi.bangoria@amd.com>
Cc: Sandipan Das <sandipan.das@amd.com>
Cc: Sean Christopherson <seanjc@google.com>
Cc: Steinar H. Gunderson <sesse@google.com>
Cc: Vincent Whitchurch <vincent.whitchurch@axis.com>
Cc: Wenyu Liu <liuwenyu7@huawei.com>
Cc: Yang Jihong <yangjihong1@huawei.com>
Link: https://lore.kernel.org/r/20231207011722.1220634-11-irogers@google.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/util/thread.c

index b9c2039c4230c0b1a806bd6ffdcb54612f6bc75d..b6986a81aa6dfa80a42a5d69d8c5c3956a685686 100644 (file)
@@ -349,34 +349,33 @@ int thread__insert_map(struct thread *thread, struct map *map)
        return maps__insert(thread__maps(thread), map);
 }
 
-static int __thread__prepare_access(struct thread *thread)
+struct thread__prepare_access_maps_cb_args {
+       int err;
+       struct maps *maps;
+};
+
+static int thread__prepare_access_maps_cb(struct map *map, void *data)
 {
        bool initialized = false;
-       int err = 0;
-       struct maps *maps = thread__maps(thread);
-       struct map_rb_node *rb_node;
-
-       down_read(maps__lock(maps));
-
-       maps__for_each_entry(maps, rb_node) {
-               err = unwind__prepare_access(thread__maps(thread), rb_node->map, &initialized);
-               if (err || initialized)
-                       break;
-       }
+       struct thread__prepare_access_maps_cb_args *args = data;
 
-       up_read(maps__lock(maps));
+       args->err = unwind__prepare_access(args->maps, map, &initialized);
 
-       return err;
+       return (args->err || initialized) ? 1 : 0;
 }
 
 static int thread__prepare_access(struct thread *thread)
 {
-       int err = 0;
+       struct thread__prepare_access_maps_cb_args args = {
+               .err = 0,
+       };
 
-       if (dwarf_callchain_users)
-               err = __thread__prepare_access(thread);
+       if (dwarf_callchain_users) {
+               args.maps = thread__maps(thread);
+               maps__for_each_map(thread__maps(thread), thread__prepare_access_maps_cb, &args);
+       }
 
-       return err;
+       return args.err;
 }
 
 static int thread__clone_maps(struct thread *thread, struct thread *parent, bool do_maps_clone)