Lines Matching defs:ring_buffer_per_cpu
457 struct ring_buffer_per_cpu { struct
458 int cpu;
459 atomic_t record_disabled;
460 struct ring_buffer *buffer;
461 raw_spinlock_t reader_lock; /* serialize readers */
462 arch_spinlock_t lock;
463 struct lock_class_key lock_key;
464 unsigned long nr_pages;
465 unsigned int current_context;
466 struct list_head *pages;
467 struct buffer_page *head_page; /* read from head */
468 struct buffer_page *tail_page; /* write to tail */
469 struct buffer_page *commit_page; /* committed pages */
470 struct buffer_page *reader_page;
471 unsigned long lost_events;
472 unsigned long last_overrun;
473 local_t entries_bytes;
474 local_t entries;
475 local_t overrun;
476 local_t commit_overrun;
477 local_t dropped_events;
478 local_t committing;
479 local_t commits;
480 unsigned long read;
504 struct ring_buffer_per_cpu **buffers; argument