Update to urcu/ref.h and urcu/uatomic.h
[ust.git] / libust / channels.h
... / ...
CommitLineData
1#ifndef UST_CHANNELS_H
2#define UST_CHANNELS_H
3
4/*
5 * Copyright (C) 2008 Mathieu Desnoyers (mathieu.desnoyers@polymtl.ca)
6 *
7 * Dynamic tracer channel allocation.
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
22 */
23
24#define _LGPL_SOURCE
25#include <linux/limits.h>
26#include <errno.h>
27#include <ust/kcompat/kcompat.h>
28#include <ust/core.h>
29#include <urcu/list.h>
30#include <urcu/ref.h>
31
32#define EVENTS_PER_CHANNEL 65536
33#define MAX_CPUS 32
34
35struct ust_trace;
36
37struct ust_buffer;
38
39struct ust_channel {
40 /* First 32 bytes cache-hot cacheline */
41 struct ust_trace *trace;
42 int *buf_struct_shmids;
43 struct ust_buffer **buf;
44 int overwrite:1;
45 /* whether collection is requested upon trace start */
46 int request_collection:1;
47 int active:1;
48 unsigned int n_subbufs_order;
49 unsigned long commit_count_mask; /*
50 * Commit count mask, removing
51 * the MSBs corresponding to
52 * bits used to represent the
53 * subbuffer index.
54 */
55 /* End of first 32 bytes cacheline */
56
57 struct urcu_ref urcu_ref; /* Channel transport reference count */
58 size_t subbuf_size;
59 int subbuf_size_order;
60 unsigned int subbuf_cnt;
61 const char *channel_name;
62 int n_cpus;
63
64 u32 version;
65 size_t alloc_size;
66 struct cds_list_head list;
67} ____cacheline_aligned;
68
69struct ltt_channel_setting {
70 unsigned int subbuf_size;
71 unsigned int subbuf_cnt;
72 struct urcu_ref urcu_ref; /* Number of references to structure content */
73 struct cds_list_head list;
74 unsigned int index; /* index of channel in trace channel array */
75 u16 free_event_id; /* Next event ID to allocate */
76 char name[PATH_MAX];
77};
78
79extern int ltt_channels_register(const char *name);
80extern int ltt_channels_unregister(const char *name);
81extern int ltt_channels_set_default(const char *name,
82 unsigned int subbuf_size,
83 unsigned int subbuf_cnt);
84extern const char *ltt_channels_get_name_from_index(unsigned int index);
85extern int ltt_channels_get_index_from_name(const char *name);
86extern struct ust_channel *ltt_channels_trace_alloc(unsigned int *nr_channels,
87 int overwrite,
88 int request_collection,
89 int active);
90extern void ltt_channels_trace_free(struct ust_channel *channels);
91extern int _ltt_channels_get_event_id(const char *channel, const char *name);
92extern int ltt_channels_get_event_id(const char *channel, const char *name);
93
94extern int ust_channels_overwrite_by_default;
95extern int ust_channels_request_collection_by_default;
96
97#endif /* UST_CHANNELS_H */
This page took 0.022225 seconds and 4 git commands to generate.