Commit | Line | Data |
---|---|---|
23e47a47 PMF |
1 | #ifndef UST_CHANNELS_H |
2 | #define UST_CHANNELS_H | |
99054cee PMF |
3 | |
4 | /* | |
5 | * Copyright (C) 2008 Mathieu Desnoyers (mathieu.desnoyers@polymtl.ca) | |
6 | * | |
7 | * Dynamic tracer channel allocation. | |
8fc2d8db PMF |
8 | * |
9 | * This library is free software; you can redistribute it and/or | |
10 | * modify it under the terms of the GNU Lesser General Public | |
11 | * License as published by the Free Software Foundation; either | |
12 | * version 2.1 of the License, or (at your option) any later version. | |
13 | * | |
14 | * This library is distributed in the hope that it will be useful, | |
15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
17 | * Lesser General Public License for more details. | |
18 | * | |
19 | * You should have received a copy of the GNU Lesser General Public | |
20 | * License along with this library; if not, write to the Free Software | |
21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | |
99054cee PMF |
22 | */ |
23 | ||
24 | #include <linux/limits.h> | |
b6bf28ec | 25 | #include <errno.h> |
518d7abb | 26 | #include <ust/kcompat/kcompat.h> |
518d7abb | 27 | #include <ust/core.h> |
99054cee | 28 | |
205f7ca7 DG |
29 | #define _LGPL_SOURCE |
30 | #include <urcu/list.h> | |
31 | #include <urcu/urcu_ref.h> | |
32 | ||
99054cee | 33 | #define EVENTS_PER_CHANNEL 65536 |
204141ee | 34 | #define MAX_CPUS 32 |
99054cee | 35 | |
b73a4c47 | 36 | struct ust_trace; |
99054cee | 37 | |
b5b073e2 PMF |
38 | struct ust_buffer; |
39 | ||
40 | struct ust_channel { | |
99054cee | 41 | /* First 32 bytes cache-hot cacheline */ |
b73a4c47 | 42 | struct ust_trace *trace; |
204141ee PMF |
43 | int *buf_struct_shmids; |
44 | struct ust_buffer **buf; | |
99054cee | 45 | int overwrite:1; |
8649cd59 PMF |
46 | /* whether collection is requested upon trace start */ |
47 | int request_collection:1; | |
99054cee PMF |
48 | int active:1; |
49 | unsigned int n_subbufs_order; | |
50 | unsigned long commit_count_mask; /* | |
51 | * Commit count mask, removing | |
52 | * the MSBs corresponding to | |
53 | * bits used to represent the | |
54 | * subbuffer index. | |
55 | */ | |
56 | /* End of first 32 bytes cacheline */ | |
57 | ||
205f7ca7 | 58 | struct urcu_ref urcu_ref; /* Channel transport reference count */ |
b5b073e2 PMF |
59 | size_t subbuf_size; |
60 | int subbuf_size_order; | |
99054cee PMF |
61 | unsigned int subbuf_cnt; |
62 | const char *channel_name; | |
204141ee | 63 | int n_cpus; |
b5b073e2 PMF |
64 | |
65 | u32 version; | |
66 | size_t alloc_size; | |
0222e121 | 67 | struct cds_list_head list; |
99054cee PMF |
68 | } ____cacheline_aligned; |
69 | ||
70 | struct ltt_channel_setting { | |
71 | unsigned int subbuf_size; | |
72 | unsigned int subbuf_cnt; | |
205f7ca7 | 73 | struct urcu_ref urcu_ref; /* Number of references to structure content */ |
0222e121 | 74 | struct cds_list_head list; |
99054cee PMF |
75 | unsigned int index; /* index of channel in trace channel array */ |
76 | u16 free_event_id; /* Next event ID to allocate */ | |
77 | char name[PATH_MAX]; | |
78 | }; | |
79 | ||
064842c6 PMF |
80 | extern int ltt_channels_register(const char *name); |
81 | extern int ltt_channels_unregister(const char *name); | |
82 | extern int ltt_channels_set_default(const char *name, | |
99054cee PMF |
83 | unsigned int subbuf_size, |
84 | unsigned int subbuf_cnt); | |
064842c6 PMF |
85 | extern const char *ltt_channels_get_name_from_index(unsigned int index); |
86 | extern int ltt_channels_get_index_from_name(const char *name); | |
b5b073e2 | 87 | extern struct ust_channel *ltt_channels_trace_alloc(unsigned int *nr_channels, |
99054cee | 88 | int overwrite, |
8649cd59 | 89 | int request_collection, |
99054cee | 90 | int active); |
b5b073e2 | 91 | extern void ltt_channels_trace_free(struct ust_channel *channels); |
064842c6 PMF |
92 | extern int _ltt_channels_get_event_id(const char *channel, const char *name); |
93 | extern int ltt_channels_get_event_id(const char *channel, const char *name); | |
99054cee | 94 | |
8649cd59 PMF |
95 | extern int ust_channels_overwrite_by_default; |
96 | extern int ust_channels_request_collection_by_default; | |
97 | ||
23e47a47 | 98 | #endif /* UST_CHANNELS_H */ |