]> git.karo-electronics.de Git - mv-sheeva.git/blobdiff - kernel/trace/trace_events_filter.c
tracing: Remove test of NULL define_fields callback
[mv-sheeva.git] / kernel / trace / trace_events_filter.c
index 330fefd1de1cade21986d97c37df14fb9189262d..36d40104b17f6d53cdc89b45841cff2679551c56 100644 (file)
@@ -639,9 +639,6 @@ static int init_subsystem_preds(struct event_subsystem *system)
        int err;
 
        list_for_each_entry(call, &ftrace_events, list) {
-               if (!call->class || !call->class->define_fields)
-                       continue;
-
                if (strcmp(call->class->system, system->name) != 0)
                        continue;
 
@@ -658,9 +655,6 @@ static void filter_free_subsystem_preds(struct event_subsystem *system)
        struct ftrace_event_call *call;
 
        list_for_each_entry(call, &ftrace_events, list) {
-               if (!call->class || !call->class->define_fields)
-                       continue;
-
                if (strcmp(call->class->system, system->name) != 0)
                        continue;
 
@@ -1263,9 +1257,6 @@ static int replace_system_preds(struct event_subsystem *system,
        list_for_each_entry(call, &ftrace_events, list) {
                struct event_filter *filter = call->filter;
 
-               if (!call->class || !call->class->define_fields)
-                       continue;
-
                if (strcmp(call->class->system, system->name) != 0)
                        continue;