+static bool is_mixed_hybrid_group(struct evsel *counter)so we care if there's at least one hybrid event in the list right?
+{
+ struct evlist *evlist = counter->evlist;
+ struct evsel *pos;
+
+ evlist__for_each_entry(evlist, pos) {
+ if (perf_pmu__is_hybrid(pos->pmu_name))
+ return true;
+ }
it can be all full with just hybrid events, but the function name
suggests it's mixed with normal events
jirka