Lines Matching defs:trace_array

326 struct trace_array {  struct
327 struct list_head list;
328 char *name;
329 struct array_buffer array_buffer;
342 struct array_buffer max_buffer;
343 bool allocated_snapshot;
344 spinlock_t snapshot_trigger_lock;
345 unsigned int snapshot;
346 unsigned long max_latency;
348 struct dentry *d_max_latency;
349 struct work_struct fsnotify_work;
350 struct irq_work fsnotify_irqwork;
354 unsigned int mapped;
355 unsigned long range_addr_start;
356 unsigned long range_addr_size;
357 char *range_name;
358 long text_delta;
359 struct trace_module_delta *module_delta;
360 void *scratch; /* pointer in persistent memory */
361 int scratch_size;
363 int buffer_disabled;
365 struct trace_pid_list __rcu *filtered_pids;
366 struct trace_pid_list __rcu *filtered_no_pids;
380 arch_spinlock_t max_lock;
382 int sys_refcount_enter;
383 int sys_refcount_exit;
384 struct trace_event_file __rcu *enter_syscall_files[NR_syscalls];
385 struct trace_event_file __rcu *exit_syscall_files[NR_syscalls];
387 int stop_count;
388 int clock_id;
389 int nr_topts;
390 bool clear_trace;
391 int buffer_percent;
392 unsigned int n_err_log_entries;
393 struct tracer *current_trace;
394 unsigned int trace_flags;
395 unsigned char trace_flags_index[TRACE_FLAGS_MAX_SIZE];
396 unsigned int flags;
397 raw_spinlock_t start_lock;
398 const char *system_names;
399 struct list_head err_log;
400 struct dentry *dir;
401 struct dentry *options;
402 struct dentry *percpu_dir;
403 struct eventfs_inode *event_dir;
404 struct trace_options *topts;
405 struct list_head systems;
406 struct list_head events;
407 struct trace_event_file *trace_marker_file;
408 cpumask_var_t tracing_cpumask; /* only trace on set CPUs */
410 cpumask_var_t pipe_cpumask;
411 int ref;
412 int trace_ref;
414 struct list_head mod_events;
417 struct ftrace_ops *ops;
418 struct trace_pid_list __rcu *function_pids;
419 struct trace_pid_list __rcu *function_no_pids;
421 struct fgraph_ops *gops;
425 struct list_head func_probes;
426 struct list_head mod_trace;
427 struct list_head mod_notrace;
430 int function_enabled;
432 int no_filter_buffering_ref;
433 struct list_head hist_vars;
435 struct cond_snapshot *cond_snapshot;
437 struct trace_func_repeats __percpu *last_func_repeats;
462 extern struct list_head ftrace_trace_arrays; argument