Fix: ensure power of 2 check handles 64-bit size_t entirely
[lttng-modules.git] / lttng-ring-buffer-client.h
CommitLineData
7514523f 1/*
a90917c3 2 * lttng-ring-buffer-client.h
7514523f
MD
3 *
4 * Copyright (C) 2010 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 *
3d084699 6 * LTTng lib ring buffer client template.
7514523f
MD
7 *
8 * Dual LGPL v2.1/GPL v2 license.
9 */
10
11#include <linux/module.h>
c0e31d2e 12#include <linux/types.h>
9115fbdc 13#include "lib/bitfield.h"
b13f3ebe 14#include "wrapper/vmalloc.h" /* for wrapper_vmalloc_sync_all() */
f3bc08c5 15#include "wrapper/trace-clock.h"
a90917c3
MD
16#include "lttng-events.h"
17#include "lttng-tracer.h"
9115fbdc 18#include "wrapper/ringbuffer/frontend_types.h"
7514523f 19
a2ef1c03
MD
20#define LTTNG_COMPACT_EVENT_BITS 5
21#define LTTNG_COMPACT_TSC_BITS 27
22
d793d5e1
MD
23/*
24 * Keep the natural field alignment for _each field_ within this structure if
25 * you ever add/remove a field from this header. Packed attribute is not used
26 * because gcc generates poor code on at least powerpc and mips. Don't ever
27 * let gcc add padding between the structure elements.
fcf74578
MD
28 *
29 * The guarantee we have with timestamps is that all the events in a
30 * packet are included (inclusive) within the begin/end timestamps of
31 * the packet. Another guarantee we have is that the "timestamp begin",
32 * as well as the event timestamps, are monotonically increasing (never
33 * decrease) when moving forward in a stream (physically). But this
34 * guarantee does not apply to "timestamp end", because it is sampled at
35 * commit time, which is not ordered with respect to space reservation.
d793d5e1 36 */
9115fbdc 37
d793d5e1 38struct packet_header {
9115fbdc 39 /* Trace packet header */
d793d5e1
MD
40 uint32_t magic; /*
41 * Trace magic number.
42 * contains endianness information.
43 */
1ec3f75a 44 uint8_t uuid[16];
d793d5e1 45 uint32_t stream_id;
9115fbdc
MD
46
47 struct {
48 /* Stream packet context */
49 uint64_t timestamp_begin; /* Cycle count at subbuffer start */
50 uint64_t timestamp_end; /* Cycle count at subbuffer end */
51 uint32_t events_discarded; /*
52 * Events lost in this subbuffer since
53 * the beginning of the trace.
54 * (may overflow)
55 */
56 uint32_t content_size; /* Size of data in subbuffer */
57 uint32_t packet_size; /* Subbuffer size (include padding) */
58 uint32_t cpu_id; /* CPU id associated with stream */
59 uint8_t header_end; /* End of header */
60 } ctx;
d793d5e1
MD
61};
62
63
881833e3
MD
64static inline notrace u64 lib_ring_buffer_clock_read(struct channel *chan)
65{
66 return trace_clock_read64();
67}
68
f1676205
MD
69static inline
70size_t ctx_get_size(size_t offset, struct lttng_ctx *ctx)
71{
72 int i;
73 size_t orig_offset = offset;
74
75 if (likely(!ctx))
76 return 0;
77 for (i = 0; i < ctx->nr_fields; i++)
78 offset += ctx->fields[i].get_size(offset);
79 return offset - orig_offset;
80}
81
82static inline
83void ctx_record(struct lib_ring_buffer_ctx *bufctx,
a90917c3 84 struct lttng_channel *chan,
f1676205
MD
85 struct lttng_ctx *ctx)
86{
87 int i;
88
89 if (likely(!ctx))
90 return;
91 for (i = 0; i < ctx->nr_fields; i++)
92 ctx->fields[i].record(&ctx->fields[i], bufctx, chan);
93}
94
881833e3
MD
95/*
96 * record_header_size - Calculate the header size and padding necessary.
97 * @config: ring buffer instance configuration
98 * @chan: channel
99 * @offset: offset in the write buffer
881833e3 100 * @pre_header_padding: padding to add before the header (output)
881833e3
MD
101 * @ctx: reservation context
102 *
103 * Returns the event header size (including padding).
104 *
881833e3
MD
105 * The payload must itself determine its own alignment from the biggest type it
106 * contains.
107 */
108static __inline__
109unsigned char record_header_size(const struct lib_ring_buffer_config *config,
110 struct channel *chan, size_t offset,
64c796d8 111 size_t *pre_header_padding,
881833e3
MD
112 struct lib_ring_buffer_ctx *ctx)
113{
a90917c3
MD
114 struct lttng_channel *lttng_chan = channel_get_private(chan);
115 struct lttng_event *event = ctx->priv;
881833e3
MD
116 size_t orig_offset = offset;
117 size_t padding;
118
a90917c3 119 switch (lttng_chan->header_type) {
9115fbdc 120 case 1: /* compact */
a90917c3 121 padding = lib_ring_buffer_align(offset, lttng_alignof(uint32_t));
9115fbdc 122 offset += padding;
a90917c3 123 if (!(ctx->rflags & (RING_BUFFER_RFLAG_FULL_TSC | LTTNG_RFLAG_EXTENDED))) {
9115fbdc
MD
124 offset += sizeof(uint32_t); /* id and timestamp */
125 } else {
a2ef1c03
MD
126 /* Minimum space taken by LTTNG_COMPACT_EVENT_BITS id */
127 offset += (LTTNG_COMPACT_EVENT_BITS + CHAR_BIT - 1) / CHAR_BIT;
9115fbdc 128 /* Align extended struct on largest member */
a90917c3 129 offset += lib_ring_buffer_align(offset, lttng_alignof(uint64_t));
9115fbdc 130 offset += sizeof(uint32_t); /* id */
a90917c3 131 offset += lib_ring_buffer_align(offset, lttng_alignof(uint64_t));
9115fbdc
MD
132 offset += sizeof(uint64_t); /* timestamp */
133 }
134 break;
135 case 2: /* large */
a90917c3 136 padding = lib_ring_buffer_align(offset, lttng_alignof(uint16_t));
9115fbdc
MD
137 offset += padding;
138 offset += sizeof(uint16_t);
a90917c3
MD
139 if (!(ctx->rflags & (RING_BUFFER_RFLAG_FULL_TSC | LTTNG_RFLAG_EXTENDED))) {
140 offset += lib_ring_buffer_align(offset, lttng_alignof(uint32_t));
9115fbdc
MD
141 offset += sizeof(uint32_t); /* timestamp */
142 } else {
143 /* Align extended struct on largest member */
a90917c3 144 offset += lib_ring_buffer_align(offset, lttng_alignof(uint64_t));
9115fbdc 145 offset += sizeof(uint32_t); /* id */
a90917c3 146 offset += lib_ring_buffer_align(offset, lttng_alignof(uint64_t));
9115fbdc 147 offset += sizeof(uint64_t); /* timestamp */
881833e3 148 }
9115fbdc
MD
149 break;
150 default:
1b2e041f 151 padding = 0;
64c796d8 152 WARN_ON_ONCE(1);
881833e3 153 }
f1676205 154 offset += ctx_get_size(offset, event->ctx);
a90917c3 155 offset += ctx_get_size(offset, lttng_chan->ctx);
881833e3
MD
156
157 *pre_header_padding = padding;
158 return offset - orig_offset;
159}
160
161#include "wrapper/ringbuffer/api.h"
162
eb9a7857 163static
a90917c3 164void lttng_write_event_header_slow(const struct lib_ring_buffer_config *config,
881833e3 165 struct lib_ring_buffer_ctx *ctx,
64c796d8 166 uint32_t event_id);
881833e3
MD
167
168/*
a90917c3 169 * lttng_write_event_header
881833e3
MD
170 *
171 * Writes the event header to the offset (already aligned on 32-bits).
172 *
173 * @config: ring buffer instance configuration
174 * @ctx: reservation context
4e1f08f4 175 * @event_id: event ID
881833e3
MD
176 */
177static __inline__
a90917c3 178void lttng_write_event_header(const struct lib_ring_buffer_config *config,
881833e3 179 struct lib_ring_buffer_ctx *ctx,
64c796d8 180 uint32_t event_id)
881833e3 181{
a90917c3
MD
182 struct lttng_channel *lttng_chan = channel_get_private(ctx->chan);
183 struct lttng_event *event = ctx->priv;
881833e3
MD
184
185 if (unlikely(ctx->rflags))
186 goto slow_path;
187
a90917c3 188 switch (lttng_chan->header_type) {
9115fbdc
MD
189 case 1: /* compact */
190 {
191 uint32_t id_time = 0;
192
a2ef1c03
MD
193 bt_bitfield_write(&id_time, uint32_t,
194 0,
195 LTTNG_COMPACT_EVENT_BITS,
196 event_id);
197 bt_bitfield_write(&id_time, uint32_t,
198 LTTNG_COMPACT_EVENT_BITS,
199 LTTNG_COMPACT_TSC_BITS,
200 ctx->tsc);
9115fbdc
MD
201 lib_ring_buffer_write(config, ctx, &id_time, sizeof(id_time));
202 break;
203 }
204 case 2: /* large */
205 {
9115fbdc 206 uint32_t timestamp = (uint32_t) ctx->tsc;
7e855749 207 uint16_t id = event_id;
9115fbdc 208
7e855749 209 lib_ring_buffer_write(config, ctx, &id, sizeof(id));
a90917c3 210 lib_ring_buffer_align_ctx(ctx, lttng_alignof(uint32_t));
9115fbdc
MD
211 lib_ring_buffer_write(config, ctx, &timestamp, sizeof(timestamp));
212 break;
213 }
214 default:
64c796d8 215 WARN_ON_ONCE(1);
9115fbdc 216 }
f1676205 217
a90917c3
MD
218 ctx_record(ctx, lttng_chan, lttng_chan->ctx);
219 ctx_record(ctx, lttng_chan, event->ctx);
c595c36f 220 lib_ring_buffer_align_ctx(ctx, ctx->largest_align);
f1676205 221
9115fbdc 222 return;
881833e3
MD
223
224slow_path:
a90917c3 225 lttng_write_event_header_slow(config, ctx, event_id);
881833e3
MD
226}
227
eb9a7857 228static
a90917c3 229void lttng_write_event_header_slow(const struct lib_ring_buffer_config *config,
64c796d8
MD
230 struct lib_ring_buffer_ctx *ctx,
231 uint32_t event_id)
881833e3 232{
a90917c3
MD
233 struct lttng_channel *lttng_chan = channel_get_private(ctx->chan);
234 struct lttng_event *event = ctx->priv;
9115fbdc 235
a90917c3 236 switch (lttng_chan->header_type) {
9115fbdc 237 case 1: /* compact */
a90917c3 238 if (!(ctx->rflags & (RING_BUFFER_RFLAG_FULL_TSC | LTTNG_RFLAG_EXTENDED))) {
9115fbdc
MD
239 uint32_t id_time = 0;
240
a2ef1c03
MD
241 bt_bitfield_write(&id_time, uint32_t,
242 0,
243 LTTNG_COMPACT_EVENT_BITS,
244 event_id);
245 bt_bitfield_write(&id_time, uint32_t,
246 LTTNG_COMPACT_EVENT_BITS,
247 LTTNG_COMPACT_TSC_BITS, ctx->tsc);
9115fbdc
MD
248 lib_ring_buffer_write(config, ctx, &id_time, sizeof(id_time));
249 } else {
250 uint8_t id = 0;
9115fbdc
MD
251 uint64_t timestamp = ctx->tsc;
252
a2ef1c03
MD
253 bt_bitfield_write(&id, uint8_t,
254 0,
255 LTTNG_COMPACT_EVENT_BITS,
256 31);
9115fbdc
MD
257 lib_ring_buffer_write(config, ctx, &id, sizeof(id));
258 /* Align extended struct on largest member */
a90917c3 259 lib_ring_buffer_align_ctx(ctx, lttng_alignof(uint64_t));
9115fbdc 260 lib_ring_buffer_write(config, ctx, &event_id, sizeof(event_id));
a90917c3 261 lib_ring_buffer_align_ctx(ctx, lttng_alignof(uint64_t));
9115fbdc
MD
262 lib_ring_buffer_write(config, ctx, &timestamp, sizeof(timestamp));
263 }
881833e3 264 break;
9115fbdc
MD
265 case 2: /* large */
266 {
a90917c3 267 if (!(ctx->rflags & (RING_BUFFER_RFLAG_FULL_TSC | LTTNG_RFLAG_EXTENDED))) {
9115fbdc 268 uint32_t timestamp = (uint32_t) ctx->tsc;
7e855749 269 uint16_t id = event_id;
9115fbdc 270
7e855749 271 lib_ring_buffer_write(config, ctx, &id, sizeof(id));
a90917c3 272 lib_ring_buffer_align_ctx(ctx, lttng_alignof(uint32_t));
9115fbdc
MD
273 lib_ring_buffer_write(config, ctx, &timestamp, sizeof(timestamp));
274 } else {
64c796d8 275 uint16_t id = 65535;
9115fbdc
MD
276 uint64_t timestamp = ctx->tsc;
277
64c796d8 278 lib_ring_buffer_write(config, ctx, &id, sizeof(id));
9115fbdc 279 /* Align extended struct on largest member */
a90917c3 280 lib_ring_buffer_align_ctx(ctx, lttng_alignof(uint64_t));
64c796d8 281 lib_ring_buffer_write(config, ctx, &event_id, sizeof(event_id));
a90917c3 282 lib_ring_buffer_align_ctx(ctx, lttng_alignof(uint64_t));
9115fbdc
MD
283 lib_ring_buffer_write(config, ctx, &timestamp, sizeof(timestamp));
284 }
881833e3 285 break;
881833e3 286 }
9115fbdc 287 default:
64c796d8 288 WARN_ON_ONCE(1);
881833e3 289 }
a90917c3
MD
290 ctx_record(ctx, lttng_chan, lttng_chan->ctx);
291 ctx_record(ctx, lttng_chan, event->ctx);
c595c36f 292 lib_ring_buffer_align_ctx(ctx, ctx->largest_align);
881833e3
MD
293}
294
7514523f
MD
295static const struct lib_ring_buffer_config client_config;
296
297static u64 client_ring_buffer_clock_read(struct channel *chan)
298{
299 return lib_ring_buffer_clock_read(chan);
300}
301
1e2015dc 302static
7514523f
MD
303size_t client_record_header_size(const struct lib_ring_buffer_config *config,
304 struct channel *chan, size_t offset,
7514523f 305 size_t *pre_header_padding,
7514523f
MD
306 struct lib_ring_buffer_ctx *ctx)
307{
64c796d8
MD
308 return record_header_size(config, chan, offset,
309 pre_header_padding, ctx);
7514523f
MD
310}
311
312/**
1c25284c 313 * client_packet_header_size - called on buffer-switch to a new sub-buffer
7514523f
MD
314 *
315 * Return header size without padding after the structure. Don't use packed
316 * structure because gcc generates inefficient code on some architectures
317 * (powerpc, mips..)
318 */
1c25284c 319static size_t client_packet_header_size(void)
7514523f 320{
9115fbdc 321 return offsetof(struct packet_header, ctx.header_end);
7514523f
MD
322}
323
324static void client_buffer_begin(struct lib_ring_buffer *buf, u64 tsc,
325 unsigned int subbuf_idx)
326{
327 struct channel *chan = buf->backend.chan;
1c25284c
MD
328 struct packet_header *header =
329 (struct packet_header *)
7514523f
MD
330 lib_ring_buffer_offset_address(&buf->backend,
331 subbuf_idx * chan->backend.subbuf_size);
a90917c3
MD
332 struct lttng_channel *lttng_chan = channel_get_private(chan);
333 struct lttng_session *session = lttng_chan->session;
7514523f 334
d793d5e1 335 header->magic = CTF_MAGIC_NUMBER;
1ec3f75a 336 memcpy(header->uuid, session->uuid.b, sizeof(session->uuid));
a90917c3 337 header->stream_id = lttng_chan->id;
9115fbdc
MD
338 header->ctx.timestamp_begin = tsc;
339 header->ctx.timestamp_end = 0;
340 header->ctx.events_discarded = 0;
341 header->ctx.content_size = 0xFFFFFFFF; /* for debugging */
342 header->ctx.packet_size = 0xFFFFFFFF;
343 header->ctx.cpu_id = buf->backend.cpu;
7514523f
MD
344}
345
346/*
347 * offset is assumed to never be 0 here : never deliver a completely empty
348 * subbuffer. data_size is between 1 and subbuf_size.
349 */
350static void client_buffer_end(struct lib_ring_buffer *buf, u64 tsc,
351 unsigned int subbuf_idx, unsigned long data_size)
352{
353 struct channel *chan = buf->backend.chan;
1c25284c
MD
354 struct packet_header *header =
355 (struct packet_header *)
7514523f
MD
356 lib_ring_buffer_offset_address(&buf->backend,
357 subbuf_idx * chan->backend.subbuf_size);
358 unsigned long records_lost = 0;
359
9115fbdc 360 header->ctx.timestamp_end = tsc;
05d32c64
MD
361 header->ctx.content_size = data_size * CHAR_BIT; /* in bits */
362 header->ctx.packet_size = PAGE_ALIGN(data_size) * CHAR_BIT; /* in bits */
7514523f
MD
363 records_lost += lib_ring_buffer_get_records_lost_full(&client_config, buf);
364 records_lost += lib_ring_buffer_get_records_lost_wrap(&client_config, buf);
365 records_lost += lib_ring_buffer_get_records_lost_big(&client_config, buf);
9115fbdc 366 header->ctx.events_discarded = records_lost;
7514523f
MD
367}
368
369static int client_buffer_create(struct lib_ring_buffer *buf, void *priv,
370 int cpu, const char *name)
371{
1c25284c 372 return 0;
7514523f
MD
373}
374
375static void client_buffer_finalize(struct lib_ring_buffer *buf, void *priv, int cpu)
376{
7514523f
MD
377}
378
379static const struct lib_ring_buffer_config client_config = {
380 .cb.ring_buffer_clock_read = client_ring_buffer_clock_read,
381 .cb.record_header_size = client_record_header_size,
1c25284c 382 .cb.subbuffer_header_size = client_packet_header_size,
7514523f
MD
383 .cb.buffer_begin = client_buffer_begin,
384 .cb.buffer_end = client_buffer_end,
385 .cb.buffer_create = client_buffer_create,
386 .cb.buffer_finalize = client_buffer_finalize,
387
a2ef1c03 388 .tsc_bits = LTTNG_COMPACT_TSC_BITS,
7514523f
MD
389 .alloc = RING_BUFFER_ALLOC_PER_CPU,
390 .sync = RING_BUFFER_SYNC_PER_CPU,
3d084699 391 .mode = RING_BUFFER_MODE_TEMPLATE,
7514523f 392 .backend = RING_BUFFER_PAGE,
2db1399a 393 .output = RING_BUFFER_OUTPUT_TEMPLATE,
7514523f
MD
394 .oops = RING_BUFFER_OOPS_CONSISTENCY,
395 .ipi = RING_BUFFER_IPI_BARRIER,
396 .wakeup = RING_BUFFER_WAKEUP_BY_TIMER,
397};
398
1e2015dc 399static
1c25284c 400struct channel *_channel_create(const char *name,
a90917c3 401 struct lttng_channel *lttng_chan, void *buf_addr,
1c25284c
MD
402 size_t subbuf_size, size_t num_subbuf,
403 unsigned int switch_timer_interval,
404 unsigned int read_timer_interval)
7514523f 405{
a90917c3 406 return channel_create(&client_config, name, lttng_chan, buf_addr,
7514523f
MD
407 subbuf_size, num_subbuf, switch_timer_interval,
408 read_timer_interval);
7514523f
MD
409}
410
1e2015dc 411static
a90917c3 412void lttng_channel_destroy(struct channel *chan)
7514523f 413{
7514523f 414 channel_destroy(chan);
7514523f
MD
415}
416
ad1c05e1 417static
a90917c3 418struct lib_ring_buffer *lttng_buffer_read_open(struct channel *chan)
ad1c05e1
MD
419{
420 struct lib_ring_buffer *buf;
421 int cpu;
422
1c25284c
MD
423 for_each_channel_cpu(cpu, chan) {
424 buf = channel_get_ring_buffer(&client_config, chan, cpu);
ad1c05e1
MD
425 if (!lib_ring_buffer_open_read(buf))
426 return buf;
427 }
428 return NULL;
429}
430
f71ecafa 431static
a90917c3 432int lttng_buffer_has_read_closed_stream(struct channel *chan)
f71ecafa
MD
433{
434 struct lib_ring_buffer *buf;
435 int cpu;
436
437 for_each_channel_cpu(cpu, chan) {
438 buf = channel_get_ring_buffer(&client_config, chan, cpu);
439 if (!atomic_long_read(&buf->active_readers))
440 return 1;
441 }
442 return 0;
443}
444
ad1c05e1 445static
a90917c3 446void lttng_buffer_read_close(struct lib_ring_buffer *buf)
ad1c05e1
MD
447{
448 lib_ring_buffer_release_read(buf);
1c25284c
MD
449}
450
c099397a 451static
a90917c3 452int lttng_event_reserve(struct lib_ring_buffer_ctx *ctx,
64c796d8 453 uint32_t event_id)
1c25284c 454{
a90917c3 455 struct lttng_channel *lttng_chan = channel_get_private(ctx->chan);
1c25284c
MD
456 int ret, cpu;
457
458 cpu = lib_ring_buffer_get_cpu(&client_config);
459 if (cpu < 0)
460 return -EPERM;
461 ctx->cpu = cpu;
462
a90917c3 463 switch (lttng_chan->header_type) {
64c796d8
MD
464 case 1: /* compact */
465 if (event_id > 30)
a90917c3 466 ctx->rflags |= LTTNG_RFLAG_EXTENDED;
64c796d8
MD
467 break;
468 case 2: /* large */
469 if (event_id > 65534)
a90917c3 470 ctx->rflags |= LTTNG_RFLAG_EXTENDED;
64c796d8
MD
471 break;
472 default:
473 WARN_ON_ONCE(1);
474 }
475
1c25284c
MD
476 ret = lib_ring_buffer_reserve(&client_config, ctx);
477 if (ret)
478 goto put;
a90917c3 479 lttng_write_event_header(&client_config, ctx, event_id);
4e1f08f4 480 return 0;
1c25284c
MD
481put:
482 lib_ring_buffer_put_cpu(&client_config);
483 return ret;
ad1c05e1
MD
484}
485
c099397a 486static
a90917c3 487void lttng_event_commit(struct lib_ring_buffer_ctx *ctx)
1c25284c
MD
488{
489 lib_ring_buffer_commit(&client_config, ctx);
490 lib_ring_buffer_put_cpu(&client_config);
491}
492
c099397a 493static
a90917c3 494void lttng_event_write(struct lib_ring_buffer_ctx *ctx, const void *src,
e763dbf5
MD
495 size_t len)
496{
497 lib_ring_buffer_write(&client_config, ctx, src, len);
498}
1c25284c 499
4ea00e4f 500static
a90917c3 501void lttng_event_write_from_user(struct lib_ring_buffer_ctx *ctx,
4ea00e4f
JD
502 const void __user *src, size_t len)
503{
504 lib_ring_buffer_copy_from_user(&client_config, ctx, src, len);
505}
506
58aa5d24 507static
a90917c3 508void lttng_event_memset(struct lib_ring_buffer_ctx *ctx,
58aa5d24
MD
509 int c, size_t len)
510{
511 lib_ring_buffer_memset(&client_config, ctx, c, len);
512}
513
c099397a 514static
a90917c3 515wait_queue_head_t *lttng_get_writer_buf_wait_queue(struct channel *chan, int cpu)
c099397a 516{
71c1d843
MD
517 struct lib_ring_buffer *buf = channel_get_ring_buffer(&client_config,
518 chan, cpu);
519 return &buf->write_wait;
24cedcfe
MD
520}
521
522static
a90917c3 523wait_queue_head_t *lttng_get_hp_wait_queue(struct channel *chan)
24cedcfe
MD
524{
525 return &chan->hp_wait;
526}
527
528static
a90917c3 529int lttng_is_finalized(struct channel *chan)
24cedcfe
MD
530{
531 return lib_ring_buffer_channel_is_finalized(chan);
c099397a
MD
532}
533
254ec7bc 534static
a90917c3 535int lttng_is_disabled(struct channel *chan)
254ec7bc
MD
536{
537 return lib_ring_buffer_channel_is_disabled(chan);
538}
539
a90917c3 540static struct lttng_transport lttng_relay_transport = {
3d084699 541 .name = "relay-" RING_BUFFER_MODE_TEMPLATE_STRING,
7514523f
MD
542 .owner = THIS_MODULE,
543 .ops = {
1c25284c 544 .channel_create = _channel_create,
a90917c3
MD
545 .channel_destroy = lttng_channel_destroy,
546 .buffer_read_open = lttng_buffer_read_open,
f71ecafa 547 .buffer_has_read_closed_stream =
a90917c3
MD
548 lttng_buffer_has_read_closed_stream,
549 .buffer_read_close = lttng_buffer_read_close,
550 .event_reserve = lttng_event_reserve,
551 .event_commit = lttng_event_commit,
552 .event_write = lttng_event_write,
553 .event_write_from_user = lttng_event_write_from_user,
554 .event_memset = lttng_event_memset,
1ec3f75a 555 .packet_avail_size = NULL, /* Would be racy anyway */
a90917c3
MD
556 .get_writer_buf_wait_queue = lttng_get_writer_buf_wait_queue,
557 .get_hp_wait_queue = lttng_get_hp_wait_queue,
558 .is_finalized = lttng_is_finalized,
559 .is_disabled = lttng_is_disabled,
7514523f
MD
560 },
561};
562
a90917c3 563static int __init lttng_ring_buffer_client_init(void)
7514523f 564{
a509e133
MD
565 /*
566 * This vmalloc sync all also takes care of the lib ring buffer
567 * vmalloc'd module pages when it is built as a module into LTTng.
568 */
6d2a620c 569 wrapper_vmalloc_sync_all();
a90917c3 570 lttng_transport_register(&lttng_relay_transport);
7514523f
MD
571 return 0;
572}
573
a90917c3 574module_init(lttng_ring_buffer_client_init);
1c25284c 575
a90917c3 576static void __exit lttng_ring_buffer_client_exit(void)
7514523f 577{
a90917c3 578 lttng_transport_unregister(&lttng_relay_transport);
7514523f
MD
579}
580
a90917c3 581module_exit(lttng_ring_buffer_client_exit);
1c25284c 582
7514523f
MD
583MODULE_LICENSE("GPL and additional rights");
584MODULE_AUTHOR("Mathieu Desnoyers");
3d084699
MD
585MODULE_DESCRIPTION("LTTng ring buffer " RING_BUFFER_MODE_TEMPLATE_STRING
586 " client");
This page took 0.055959 seconds and 4 git commands to generate.