|
@@ -175,9 +175,6 @@ struct tracepoint_path *tracepoint_id_to_path(u64 config)
|
|
|
char evt_path[MAXPATHLEN];
|
|
|
char dir_path[MAXPATHLEN];
|
|
|
|
|
|
- if (debugfs_valid_mountpoint(tracing_events_path))
|
|
|
- return NULL;
|
|
|
-
|
|
|
sys_dir = opendir(tracing_events_path);
|
|
|
if (!sys_dir)
|
|
|
return NULL;
|
|
@@ -473,12 +470,6 @@ static int add_tracepoint_multi_sys(struct list_head *list, int *idx,
|
|
|
int parse_events_add_tracepoint(struct list_head *list, int *idx,
|
|
|
char *sys, char *event)
|
|
|
{
|
|
|
- int ret;
|
|
|
-
|
|
|
- ret = debugfs_valid_mountpoint(tracing_events_path);
|
|
|
- if (ret)
|
|
|
- return ret;
|
|
|
-
|
|
|
if (strpbrk(sys, "*?"))
|
|
|
return add_tracepoint_multi_sys(list, idx, sys, event);
|
|
|
else
|
|
@@ -1109,13 +1100,6 @@ void print_tracepoint_events(const char *subsys_glob, const char *event_glob,
|
|
|
struct dirent *sys_next, *evt_next, sys_dirent, evt_dirent;
|
|
|
char evt_path[MAXPATHLEN];
|
|
|
char dir_path[MAXPATHLEN];
|
|
|
- char sbuf[STRERR_BUFSIZE];
|
|
|
-
|
|
|
- if (debugfs_valid_mountpoint(tracing_events_path)) {
|
|
|
- printf(" [ Tracepoints not available: %s ]\n",
|
|
|
- strerror_r(errno, sbuf, sizeof(sbuf)));
|
|
|
- return;
|
|
|
- }
|
|
|
|
|
|
sys_dir = opendir(tracing_events_path);
|
|
|
if (!sys_dir)
|
|
@@ -1163,9 +1147,6 @@ int is_valid_tracepoint(const char *event_string)
|
|
|
char evt_path[MAXPATHLEN];
|
|
|
char dir_path[MAXPATHLEN];
|
|
|
|
|
|
- if (debugfs_valid_mountpoint(tracing_events_path))
|
|
|
- return 0;
|
|
|
-
|
|
|
sys_dir = opendir(tracing_events_path);
|
|
|
if (!sys_dir)
|
|
|
return 0;
|