~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/perf/util/ordered-events.h

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0 */
  2 #ifndef __ORDERED_EVENTS_H
  3 #define __ORDERED_EVENTS_H
  4 
  5 #include <linux/types.h>
  6 
  7 struct perf_sample;
  8 
  9 struct ordered_event {
 10         u64                     timestamp;
 11         u64                     file_offset;
 12         const char              *file_path;
 13         union perf_event        *event;
 14         struct list_head        list;
 15 };
 16 
 17 enum oe_flush {
 18         OE_FLUSH__NONE,
 19         OE_FLUSH__FINAL,
 20         OE_FLUSH__ROUND,
 21         OE_FLUSH__HALF,
 22         OE_FLUSH__TOP,
 23         OE_FLUSH__TIME,
 24 };
 25 
 26 struct ordered_events;
 27 
 28 typedef int (*ordered_events__deliver_t)(struct ordered_events *oe,
 29                                          struct ordered_event *event);
 30 
 31 struct ordered_events_buffer {
 32         struct list_head        list;
 33         struct ordered_event    event[];
 34 };
 35 
 36 struct ordered_events {
 37         u64                              last_flush;
 38         u64                              next_flush;
 39         u64                              max_timestamp;
 40         u64                              max_alloc_size;
 41         u64                              cur_alloc_size;
 42         struct list_head                 events;
 43         struct list_head                 cache;
 44         struct list_head                 to_free;
 45         struct ordered_events_buffer    *buffer;
 46         struct ordered_event            *last;
 47         ordered_events__deliver_t        deliver;
 48         int                              buffer_idx;
 49         unsigned int                     nr_events;
 50         enum oe_flush                    last_flush_type;
 51         u32                              nr_unordered_events;
 52         bool                             copy_on_queue;
 53         void                            *data;
 54 };
 55 
 56 int ordered_events__queue(struct ordered_events *oe, union perf_event *event,
 57                           u64 timestamp, u64 file_offset, const char *file_path);
 58 void ordered_events__delete(struct ordered_events *oe, struct ordered_event *event);
 59 int ordered_events__flush(struct ordered_events *oe, enum oe_flush how);
 60 int ordered_events__flush_time(struct ordered_events *oe, u64 timestamp);
 61 void ordered_events__init(struct ordered_events *oe, ordered_events__deliver_t deliver,
 62                           void *data);
 63 void ordered_events__free(struct ordered_events *oe);
 64 void ordered_events__reinit(struct ordered_events *oe);
 65 u64 ordered_events__first_time(struct ordered_events *oe);
 66 
 67 static inline
 68 void ordered_events__set_alloc_size(struct ordered_events *oe, u64 size)
 69 {
 70         oe->max_alloc_size = size;
 71 }
 72 
 73 static inline
 74 void ordered_events__set_copy_on_queue(struct ordered_events *oe, bool copy)
 75 {
 76         oe->copy_on_queue = copy;
 77 }
 78 
 79 static inline u64 ordered_events__last_flush_time(struct ordered_events *oe)
 80 {
 81         return oe->last_flush;
 82 }
 83 
 84 #endif /* __ORDERED_EVENTS_H */
 85 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php