parse-events.c (a976c2951d8f376112361830aa7762beff83a205) parse-events.c (f045b8c4b36baddcfbdd4d3d956446e688b0b3cd)
1#include <linux/hw_breakpoint.h>
2#include <linux/err.h>
3#include <dirent.h>
4#include <errno.h>
5#include <sys/ioctl.h>
6#include <sys/param.h>
7#include "term.h"
8#include "../perf.h"

--- 2110 unchanged lines hidden (view full) ---

2119 return;
2120 }
2121 bidlist = build_id_cache__list_all(true);
2122 if (!bidlist) {
2123 pr_debug("Failed to get buildids: %d\n", errno);
2124 return;
2125 }
2126 strlist__for_each_entry(nd, bidlist) {
1#include <linux/hw_breakpoint.h>
2#include <linux/err.h>
3#include <dirent.h>
4#include <errno.h>
5#include <sys/ioctl.h>
6#include <sys/param.h>
7#include "term.h"
8#include "../perf.h"

--- 2110 unchanged lines hidden (view full) ---

2119 return;
2120 }
2121 bidlist = build_id_cache__list_all(true);
2122 if (!bidlist) {
2123 pr_debug("Failed to get buildids: %d\n", errno);
2124 return;
2125 }
2126 strlist__for_each_entry(nd, bidlist) {
2127 pcache = probe_cache__new(nd->s);
2127 pcache = probe_cache__new(nd->s, NULL);
2128 if (!pcache)
2129 continue;
2130 list_for_each_entry(ent, &pcache->entries, node) {
2131 if (!ent->sdt)
2132 continue;
2133 if (subsys_glob &&
2134 !strglobmatch(ent->pev.group, subsys_glob))
2135 continue;

--- 452 unchanged lines hidden ---
2128 if (!pcache)
2129 continue;
2130 list_for_each_entry(ent, &pcache->entries, node) {
2131 if (!ent->sdt)
2132 continue;
2133 if (subsys_glob &&
2134 !strglobmatch(ent->pev.group, subsys_glob))
2135 continue;

--- 452 unchanged lines hidden ---