Lines Matching defs:trace_array
331 struct trace_array { struct
332 struct list_head list;
333 char *name;
334 struct array_buffer array_buffer;
348 struct array_buffer snapshot_buffer;
349 bool allocated_snapshot;
350 spinlock_t snapshot_trigger_lock;
351 unsigned int snapshot;
353 unsigned long max_latency;
354 struct dentry *d_max_latency;
356 struct work_struct fsnotify_work;
357 struct irq_work fsnotify_irqwork;
363 unsigned int mapped;
364 unsigned long range_addr_start;
365 unsigned long range_addr_size;
366 char *range_name;
367 long text_delta;
368 struct trace_module_delta *module_delta;
369 void *scratch; /* pointer in persistent memory */
370 int scratch_size;
372 int buffer_disabled;
374 struct trace_pid_list __rcu *filtered_pids;
375 struct trace_pid_list __rcu *filtered_no_pids;
389 arch_spinlock_t max_lock;
391 int sys_refcount_enter;
392 int sys_refcount_exit;
393 struct trace_event_file *enter_syscall_files[NR_syscalls];
394 struct trace_event_file *exit_syscall_files[NR_syscalls];
396 int stop_count;
397 int clock_id;
398 int nr_topts;
399 bool clear_trace;
400 int buffer_percent;
401 unsigned int n_err_log_entries;
402 struct tracer *current_trace;
403 struct tracer_flags *current_trace_flags;
404 u64 trace_flags;
405 unsigned char trace_flags_index[TRACE_FLAGS_MAX_SIZE];
406 unsigned int flags;
407 raw_spinlock_t start_lock;
408 const char *system_names;
409 struct list_head err_log;
410 struct dentry *dir;
411 struct dentry *options;
412 struct dentry *percpu_dir;
413 struct eventfs_inode *event_dir;
414 struct trace_options *topts;
415 struct list_head systems;
416 struct list_head events;
417 struct list_head marker_list;
418 struct list_head tracers;
419 struct trace_event_file *trace_marker_file;
420 cpumask_var_t tracing_cpumask; /* only trace on set CPUs */
422 cpumask_var_t pipe_cpumask;
423 int ref;
424 int trace_ref;
426 struct list_head mod_events;
429 struct ftrace_ops *ops;
430 struct trace_pid_list __rcu *function_pids;
431 struct trace_pid_list __rcu *function_no_pids;
433 struct fgraph_ops *gops;
437 struct list_head func_probes;
438 struct list_head mod_trace;
439 struct list_head mod_notrace;
442 int function_enabled;
444 int no_filter_buffering_ref;
445 unsigned int syscall_buf_sz;
446 struct list_head hist_vars;
448 struct cond_snapshot *cond_snapshot;
450 struct trace_func_repeats __percpu *last_func_repeats;
476 extern struct list_head ftrace_trace_arrays; argument