Lines Matching defs:trace_array

320 struct trace_array {  struct
321 struct list_head list;
322 char *name;
323 struct array_buffer array_buffer;
336 struct array_buffer max_buffer;
337 bool allocated_snapshot;
338 spinlock_t snapshot_trigger_lock;
339 unsigned int snapshot;
340 unsigned long max_latency;
342 struct dentry *d_max_latency;
343 struct work_struct fsnotify_work;
344 struct irq_work fsnotify_irqwork;
348 unsigned int mapped;
349 unsigned long range_addr_start;
350 unsigned long range_addr_size;
351 long text_delta;
352 long data_delta;
354 struct trace_pid_list __rcu *filtered_pids;
355 struct trace_pid_list __rcu *filtered_no_pids;
369 arch_spinlock_t max_lock;
370 int buffer_disabled;
372 int sys_refcount_enter;
373 int sys_refcount_exit;
374 struct trace_event_file __rcu *enter_syscall_files[NR_syscalls];
375 struct trace_event_file __rcu *exit_syscall_files[NR_syscalls];
377 int stop_count;
378 int clock_id;
379 int nr_topts;
380 bool clear_trace;
381 int buffer_percent;
382 unsigned int n_err_log_entries;
383 struct tracer *current_trace;
384 unsigned int trace_flags;
385 unsigned char trace_flags_index[TRACE_FLAGS_MAX_SIZE];
386 unsigned int flags;
387 raw_spinlock_t start_lock;
388 const char *system_names;
389 struct list_head err_log;
390 struct dentry *dir;
391 struct dentry *options;
392 struct dentry *percpu_dir;
393 struct eventfs_inode *event_dir;
394 struct trace_options *topts;
395 struct list_head systems;
396 struct list_head events;
397 struct trace_event_file *trace_marker_file;
398 cpumask_var_t tracing_cpumask; /* only trace on set CPUs */
400 cpumask_var_t pipe_cpumask;
401 int ref;
402 int trace_ref;
404 struct list_head mod_events;
407 struct ftrace_ops *ops;
408 struct trace_pid_list __rcu *function_pids;
409 struct trace_pid_list __rcu *function_no_pids;
411 struct fgraph_ops *gops;
415 struct list_head func_probes;
416 struct list_head mod_trace;
417 struct list_head mod_notrace;
420 int function_enabled;
422 int no_filter_buffering_ref;
423 struct list_head hist_vars;
425 struct cond_snapshot *cond_snapshot;
450 extern struct list_head ftrace_trace_arrays; argument
454 extern int trace_array_get(struct trace_array *tr); argument