Fix: do not generate packet at destroy after stop
[lttng-modules.git] / lib / ringbuffer / ring_buffer_frontend.c
CommitLineData
f3bc08c5
MD
1/*
2 * ring_buffer_frontend.c
3 *
886d51a3
MD
4 * Copyright (C) 2005-2012 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; only
9 * version 2.1 of the License.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 *
f3bc08c5
MD
20 *
21 * Ring buffer wait-free buffer synchronization. Producer-consumer and flight
22 * recorder (overwrite) modes. See thesis:
23 *
24 * Desnoyers, Mathieu (2009), "Low-Impact Operating System Tracing", Ph.D.
25 * dissertation, Ecole Polytechnique de Montreal.
26 * http://www.lttng.org/pub/thesis/desnoyers-dissertation-2009-12.pdf
27 *
28 * - Algorithm presentation in Chapter 5:
29 * "Lockless Multi-Core High-Throughput Buffering".
30 * - Algorithm formal verification in Section 8.6:
31 * "Formal verification of LTTng"
32 *
33 * Author:
34 * Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
35 *
36 * Inspired from LTT and RelayFS:
37 * Karim Yaghmour <karim@opersys.com>
38 * Tom Zanussi <zanussi@us.ibm.com>
39 * Bob Wisniewski <bob@watson.ibm.com>
40 * And from K42 :
41 * Bob Wisniewski <bob@watson.ibm.com>
42 *
43 * Buffer reader semantic :
44 *
45 * - get_subbuf_size
46 * while buffer is not finalized and empty
47 * - get_subbuf
48 * - if return value != 0, continue
49 * - splice one subbuffer worth of data to a pipe
50 * - splice the data from pipe to disk/network
51 * - put_subbuf
f3bc08c5
MD
52 */
53
54#include <linux/delay.h>
55#include <linux/module.h>
56#include <linux/percpu.h>
57
58#include "../../wrapper/ringbuffer/config.h"
59#include "../../wrapper/ringbuffer/backend.h"
60#include "../../wrapper/ringbuffer/frontend.h"
61#include "../../wrapper/ringbuffer/iterator.h"
62#include "../../wrapper/ringbuffer/nohz.h"
505fb410 63#include "../../wrapper/atomic.h"
18166235 64#include "../../wrapper/percpu-defs.h"
f3bc08c5
MD
65
66/*
67 * Internal structure representing offsets to use at a sub-buffer switch.
68 */
69struct switch_offsets {
70 unsigned long begin, end, old;
71 size_t pre_header_padding, size;
f5ea5800
MD
72 unsigned int switch_new_start:1, switch_new_end:1, switch_old_start:1,
73 switch_old_end:1;
f3bc08c5
MD
74};
75
76#ifdef CONFIG_NO_HZ
77enum tick_nohz_val {
78 TICK_NOHZ_STOP,
79 TICK_NOHZ_FLUSH,
80 TICK_NOHZ_RESTART,
81};
82
83static ATOMIC_NOTIFIER_HEAD(tick_nohz_notifier);
84#endif /* CONFIG_NO_HZ */
85
86static DEFINE_PER_CPU(spinlock_t, ring_buffer_nohz_lock);
87
88DEFINE_PER_CPU(unsigned int, lib_ring_buffer_nesting);
89EXPORT_PER_CPU_SYMBOL(lib_ring_buffer_nesting);
90
91static
92void lib_ring_buffer_print_errors(struct channel *chan,
93 struct lib_ring_buffer *buf, int cpu);
b63af41c
MD
94static
95void _lib_ring_buffer_switch_remote(struct lib_ring_buffer *buf,
96 enum switch_mode mode);
f3bc08c5
MD
97
98/*
99 * Must be called under cpu hotplug protection.
100 */
101void lib_ring_buffer_free(struct lib_ring_buffer *buf)
102{
103 struct channel *chan = buf->backend.chan;
104
105 lib_ring_buffer_print_errors(chan, buf, buf->backend.cpu);
106 kfree(buf->commit_hot);
107 kfree(buf->commit_cold);
108
109 lib_ring_buffer_backend_free(&buf->backend);
110}
111
112/**
113 * lib_ring_buffer_reset - Reset ring buffer to initial values.
114 * @buf: Ring buffer.
115 *
116 * Effectively empty the ring buffer. Should be called when the buffer is not
117 * used for writing. The ring buffer can be opened for reading, but the reader
118 * should not be using the iterator concurrently with reset. The previous
119 * current iterator record is reset.
120 */
121void lib_ring_buffer_reset(struct lib_ring_buffer *buf)
122{
123 struct channel *chan = buf->backend.chan;
5a8fd222 124 const struct lib_ring_buffer_config *config = &chan->backend.config;
f3bc08c5
MD
125 unsigned int i;
126
127 /*
128 * Reset iterator first. It will put the subbuffer if it currently holds
129 * it.
130 */
131 lib_ring_buffer_iterator_reset(buf);
132 v_set(config, &buf->offset, 0);
133 for (i = 0; i < chan->backend.num_subbuf; i++) {
134 v_set(config, &buf->commit_hot[i].cc, 0);
135 v_set(config, &buf->commit_hot[i].seq, 0);
136 v_set(config, &buf->commit_cold[i].cc_sb, 0);
137 }
138 atomic_long_set(&buf->consumed, 0);
139 atomic_set(&buf->record_disabled, 0);
140 v_set(config, &buf->last_tsc, 0);
141 lib_ring_buffer_backend_reset(&buf->backend);
142 /* Don't reset number of active readers */
143 v_set(config, &buf->records_lost_full, 0);
144 v_set(config, &buf->records_lost_wrap, 0);
145 v_set(config, &buf->records_lost_big, 0);
146 v_set(config, &buf->records_count, 0);
147 v_set(config, &buf->records_overrun, 0);
148 buf->finalized = 0;
149}
150EXPORT_SYMBOL_GPL(lib_ring_buffer_reset);
151
152/**
153 * channel_reset - Reset channel to initial values.
154 * @chan: Channel.
155 *
156 * Effectively empty the channel. Should be called when the channel is not used
157 * for writing. The channel can be opened for reading, but the reader should not
158 * be using the iterator concurrently with reset. The previous current iterator
159 * record is reset.
160 */
161void channel_reset(struct channel *chan)
162{
163 /*
164 * Reset iterators first. Will put the subbuffer if held for reading.
165 */
166 channel_iterator_reset(chan);
167 atomic_set(&chan->record_disabled, 0);
168 /* Don't reset commit_count_mask, still valid */
169 channel_backend_reset(&chan->backend);
170 /* Don't reset switch/read timer interval */
171 /* Don't reset notifiers and notifier enable bits */
172 /* Don't reset reader reference count */
173}
174EXPORT_SYMBOL_GPL(channel_reset);
175
176/*
177 * Must be called under cpu hotplug protection.
178 */
179int lib_ring_buffer_create(struct lib_ring_buffer *buf,
180 struct channel_backend *chanb, int cpu)
181{
5a8fd222 182 const struct lib_ring_buffer_config *config = &chanb->config;
f3bc08c5
MD
183 struct channel *chan = container_of(chanb, struct channel, backend);
184 void *priv = chanb->priv;
f3bc08c5
MD
185 size_t subbuf_header_size;
186 u64 tsc;
187 int ret;
188
189 /* Test for cpu hotplug */
190 if (buf->backend.allocated)
191 return 0;
192
193 /*
194 * Paranoia: per cpu dynamic allocation is not officially documented as
195 * zeroing the memory, so let's do it here too, just in case.
196 */
197 memset(buf, 0, sizeof(*buf));
198
199 ret = lib_ring_buffer_backend_create(&buf->backend, &chan->backend, cpu);
200 if (ret)
201 return ret;
202
203 buf->commit_hot =
204 kzalloc_node(ALIGN(sizeof(*buf->commit_hot)
205 * chan->backend.num_subbuf,
206 1 << INTERNODE_CACHE_SHIFT),
207 GFP_KERNEL, cpu_to_node(max(cpu, 0)));
208 if (!buf->commit_hot) {
209 ret = -ENOMEM;
210 goto free_chanbuf;
211 }
212
213 buf->commit_cold =
214 kzalloc_node(ALIGN(sizeof(*buf->commit_cold)
215 * chan->backend.num_subbuf,
216 1 << INTERNODE_CACHE_SHIFT),
217 GFP_KERNEL, cpu_to_node(max(cpu, 0)));
218 if (!buf->commit_cold) {
219 ret = -ENOMEM;
220 goto free_commit;
221 }
222
f3bc08c5 223 init_waitqueue_head(&buf->read_wait);
71c1d843 224 init_waitqueue_head(&buf->write_wait);
f3bc08c5
MD
225 raw_spin_lock_init(&buf->raw_tick_nohz_spinlock);
226
227 /*
228 * Write the subbuffer header for first subbuffer so we know the total
229 * duration of data gathering.
230 */
231 subbuf_header_size = config->cb.subbuffer_header_size();
232 v_set(config, &buf->offset, subbuf_header_size);
233 subbuffer_id_clear_noref(config, &buf->backend.buf_wsb[0].id);
234 tsc = config->cb.ring_buffer_clock_read(buf->backend.chan);
235 config->cb.buffer_begin(buf, tsc, 0);
236 v_add(config, subbuf_header_size, &buf->commit_hot[0].cc);
237
238 if (config->cb.buffer_create) {
239 ret = config->cb.buffer_create(buf, priv, cpu, chanb->name);
240 if (ret)
241 goto free_init;
242 }
243
244 /*
245 * Ensure the buffer is ready before setting it to allocated and setting
246 * the cpumask.
247 * Used for cpu hotplug vs cpumask iteration.
248 */
249 smp_wmb();
250 buf->backend.allocated = 1;
251
252 if (config->alloc == RING_BUFFER_ALLOC_PER_CPU) {
253 CHAN_WARN_ON(chan, cpumask_test_cpu(cpu,
254 chan->backend.cpumask));
255 cpumask_set_cpu(cpu, chan->backend.cpumask);
256 }
257
258 return 0;
259
260 /* Error handling */
261free_init:
262 kfree(buf->commit_cold);
263free_commit:
264 kfree(buf->commit_hot);
265free_chanbuf:
266 lib_ring_buffer_backend_free(&buf->backend);
267 return ret;
268}
269
270static void switch_buffer_timer(unsigned long data)
271{
272 struct lib_ring_buffer *buf = (struct lib_ring_buffer *)data;
273 struct channel *chan = buf->backend.chan;
5a8fd222 274 const struct lib_ring_buffer_config *config = &chan->backend.config;
f3bc08c5
MD
275
276 /*
277 * Only flush buffers periodically if readers are active.
278 */
279 if (atomic_long_read(&buf->active_readers))
280 lib_ring_buffer_switch_slow(buf, SWITCH_ACTIVE);
281
282 if (config->alloc == RING_BUFFER_ALLOC_PER_CPU)
283 mod_timer_pinned(&buf->switch_timer,
284 jiffies + chan->switch_timer_interval);
285 else
286 mod_timer(&buf->switch_timer,
287 jiffies + chan->switch_timer_interval);
288}
289
290/*
291 * Called with ring_buffer_nohz_lock held for per-cpu buffers.
292 */
293static void lib_ring_buffer_start_switch_timer(struct lib_ring_buffer *buf)
294{
295 struct channel *chan = buf->backend.chan;
5a8fd222 296 const struct lib_ring_buffer_config *config = &chan->backend.config;
f3bc08c5
MD
297
298 if (!chan->switch_timer_interval || buf->switch_timer_enabled)
299 return;
300 init_timer(&buf->switch_timer);
301 buf->switch_timer.function = switch_buffer_timer;
302 buf->switch_timer.expires = jiffies + chan->switch_timer_interval;
303 buf->switch_timer.data = (unsigned long)buf;
304 if (config->alloc == RING_BUFFER_ALLOC_PER_CPU)
305 add_timer_on(&buf->switch_timer, buf->backend.cpu);
306 else
307 add_timer(&buf->switch_timer);
308 buf->switch_timer_enabled = 1;
309}
310
311/*
312 * Called with ring_buffer_nohz_lock held for per-cpu buffers.
313 */
314static void lib_ring_buffer_stop_switch_timer(struct lib_ring_buffer *buf)
315{
316 struct channel *chan = buf->backend.chan;
317
318 if (!chan->switch_timer_interval || !buf->switch_timer_enabled)
319 return;
320
321 del_timer_sync(&buf->switch_timer);
322 buf->switch_timer_enabled = 0;
323}
324
325/*
326 * Polling timer to check the channels for data.
327 */
328static void read_buffer_timer(unsigned long data)
329{
330 struct lib_ring_buffer *buf = (struct lib_ring_buffer *)data;
331 struct channel *chan = buf->backend.chan;
5a8fd222 332 const struct lib_ring_buffer_config *config = &chan->backend.config;
f3bc08c5
MD
333
334 CHAN_WARN_ON(chan, !buf->backend.allocated);
335
336 if (atomic_long_read(&buf->active_readers)
337 && lib_ring_buffer_poll_deliver(config, buf, chan)) {
338 wake_up_interruptible(&buf->read_wait);
339 wake_up_interruptible(&chan->read_wait);
340 }
341
342 if (config->alloc == RING_BUFFER_ALLOC_PER_CPU)
343 mod_timer_pinned(&buf->read_timer,
344 jiffies + chan->read_timer_interval);
345 else
346 mod_timer(&buf->read_timer,
347 jiffies + chan->read_timer_interval);
348}
349
350/*
351 * Called with ring_buffer_nohz_lock held for per-cpu buffers.
352 */
353static void lib_ring_buffer_start_read_timer(struct lib_ring_buffer *buf)
354{
355 struct channel *chan = buf->backend.chan;
5a8fd222 356 const struct lib_ring_buffer_config *config = &chan->backend.config;
f3bc08c5
MD
357
358 if (config->wakeup != RING_BUFFER_WAKEUP_BY_TIMER
359 || !chan->read_timer_interval
360 || buf->read_timer_enabled)
361 return;
362
363 init_timer(&buf->read_timer);
364 buf->read_timer.function = read_buffer_timer;
365 buf->read_timer.expires = jiffies + chan->read_timer_interval;
366 buf->read_timer.data = (unsigned long)buf;
367
368 if (config->alloc == RING_BUFFER_ALLOC_PER_CPU)
369 add_timer_on(&buf->read_timer, buf->backend.cpu);
370 else
371 add_timer(&buf->read_timer);
372 buf->read_timer_enabled = 1;
373}
374
375/*
376 * Called with ring_buffer_nohz_lock held for per-cpu buffers.
377 */
378static void lib_ring_buffer_stop_read_timer(struct lib_ring_buffer *buf)
379{
380 struct channel *chan = buf->backend.chan;
5a8fd222 381 const struct lib_ring_buffer_config *config = &chan->backend.config;
f3bc08c5
MD
382
383 if (config->wakeup != RING_BUFFER_WAKEUP_BY_TIMER
384 || !chan->read_timer_interval
385 || !buf->read_timer_enabled)
386 return;
387
388 del_timer_sync(&buf->read_timer);
389 /*
390 * do one more check to catch data that has been written in the last
391 * timer period.
392 */
393 if (lib_ring_buffer_poll_deliver(config, buf, chan)) {
394 wake_up_interruptible(&buf->read_wait);
395 wake_up_interruptible(&chan->read_wait);
396 }
397 buf->read_timer_enabled = 0;
398}
399
400#ifdef CONFIG_HOTPLUG_CPU
401/**
402 * lib_ring_buffer_cpu_hp_callback - CPU hotplug callback
403 * @nb: notifier block
404 * @action: hotplug action to take
405 * @hcpu: CPU number
406 *
407 * Returns the success/failure of the operation. (%NOTIFY_OK, %NOTIFY_BAD)
408 */
409static
e8f071d5 410int lib_ring_buffer_cpu_hp_callback(struct notifier_block *nb,
f3bc08c5
MD
411 unsigned long action,
412 void *hcpu)
413{
414 unsigned int cpu = (unsigned long)hcpu;
415 struct channel *chan = container_of(nb, struct channel,
416 cpu_hp_notifier);
417 struct lib_ring_buffer *buf = per_cpu_ptr(chan->backend.buf, cpu);
5a8fd222 418 const struct lib_ring_buffer_config *config = &chan->backend.config;
f3bc08c5
MD
419
420 if (!chan->cpu_hp_enable)
421 return NOTIFY_DONE;
422
423 CHAN_WARN_ON(chan, config->alloc == RING_BUFFER_ALLOC_GLOBAL);
424
425 switch (action) {
426 case CPU_DOWN_FAILED:
427 case CPU_DOWN_FAILED_FROZEN:
428 case CPU_ONLINE:
429 case CPU_ONLINE_FROZEN:
24cedcfe 430 wake_up_interruptible(&chan->hp_wait);
f3bc08c5
MD
431 lib_ring_buffer_start_switch_timer(buf);
432 lib_ring_buffer_start_read_timer(buf);
433 return NOTIFY_OK;
434
435 case CPU_DOWN_PREPARE:
436 case CPU_DOWN_PREPARE_FROZEN:
437 lib_ring_buffer_stop_switch_timer(buf);
438 lib_ring_buffer_stop_read_timer(buf);
439 return NOTIFY_OK;
440
441 case CPU_DEAD:
442 case CPU_DEAD_FROZEN:
443 /*
444 * Performing a buffer switch on a remote CPU. Performed by
445 * the CPU responsible for doing the hotunplug after the target
446 * CPU stopped running completely. Ensures that all data
447 * from that remote CPU is flushed.
448 */
449 lib_ring_buffer_switch_slow(buf, SWITCH_ACTIVE);
450 return NOTIFY_OK;
451
452 default:
453 return NOTIFY_DONE;
454 }
455}
456#endif
457
23b908b0 458#if defined(CONFIG_NO_HZ) && defined(CONFIG_LIB_RING_BUFFER)
f3bc08c5
MD
459/*
460 * For per-cpu buffers, call the reader wakeups before switching the buffer, so
461 * that wake-up-tracing generated events are flushed before going idle (in
462 * tick_nohz). We test if the spinlock is locked to deal with the race where
463 * readers try to sample the ring buffer before we perform the switch. We let
464 * the readers retry in that case. If there is data in the buffer, the wake up
465 * is going to forbid the CPU running the reader thread from going idle.
466 */
467static int notrace ring_buffer_tick_nohz_callback(struct notifier_block *nb,
468 unsigned long val,
469 void *data)
470{
471 struct channel *chan = container_of(nb, struct channel,
472 tick_nohz_notifier);
5a8fd222 473 const struct lib_ring_buffer_config *config = &chan->backend.config;
f3bc08c5
MD
474 struct lib_ring_buffer *buf;
475 int cpu = smp_processor_id();
476
477 if (config->alloc != RING_BUFFER_ALLOC_PER_CPU) {
478 /*
479 * We don't support keeping the system idle with global buffers
480 * and streaming active. In order to do so, we would need to
481 * sample a non-nohz-cpumask racelessly with the nohz updates
482 * without adding synchronization overhead to nohz. Leave this
483 * use-case out for now.
484 */
485 return 0;
486 }
487
488 buf = channel_get_ring_buffer(config, chan, cpu);
489 switch (val) {
490 case TICK_NOHZ_FLUSH:
491 raw_spin_lock(&buf->raw_tick_nohz_spinlock);
492 if (config->wakeup == RING_BUFFER_WAKEUP_BY_TIMER
493 && chan->read_timer_interval
494 && atomic_long_read(&buf->active_readers)
495 && (lib_ring_buffer_poll_deliver(config, buf, chan)
496 || lib_ring_buffer_pending_data(config, buf, chan))) {
497 wake_up_interruptible(&buf->read_wait);
498 wake_up_interruptible(&chan->read_wait);
499 }
500 if (chan->switch_timer_interval)
501 lib_ring_buffer_switch_slow(buf, SWITCH_ACTIVE);
502 raw_spin_unlock(&buf->raw_tick_nohz_spinlock);
503 break;
504 case TICK_NOHZ_STOP:
18166235 505 spin_lock(lttng_this_cpu_ptr(&ring_buffer_nohz_lock));
f3bc08c5
MD
506 lib_ring_buffer_stop_switch_timer(buf);
507 lib_ring_buffer_stop_read_timer(buf);
18166235 508 spin_unlock(lttng_this_cpu_ptr(&ring_buffer_nohz_lock));
f3bc08c5
MD
509 break;
510 case TICK_NOHZ_RESTART:
18166235 511 spin_lock(lttng_this_cpu_ptr(&ring_buffer_nohz_lock));
f3bc08c5
MD
512 lib_ring_buffer_start_read_timer(buf);
513 lib_ring_buffer_start_switch_timer(buf);
18166235 514 spin_unlock(lttng_this_cpu_ptr(&ring_buffer_nohz_lock));
f3bc08c5
MD
515 break;
516 }
517
518 return 0;
519}
520
521void notrace lib_ring_buffer_tick_nohz_flush(void)
522{
523 atomic_notifier_call_chain(&tick_nohz_notifier, TICK_NOHZ_FLUSH,
524 NULL);
525}
526
527void notrace lib_ring_buffer_tick_nohz_stop(void)
528{
529 atomic_notifier_call_chain(&tick_nohz_notifier, TICK_NOHZ_STOP,
530 NULL);
531}
532
533void notrace lib_ring_buffer_tick_nohz_restart(void)
534{
535 atomic_notifier_call_chain(&tick_nohz_notifier, TICK_NOHZ_RESTART,
536 NULL);
537}
23b908b0 538#endif /* defined(CONFIG_NO_HZ) && defined(CONFIG_LIB_RING_BUFFER) */
f3bc08c5
MD
539
540/*
541 * Holds CPU hotplug.
542 */
543static void channel_unregister_notifiers(struct channel *chan)
544{
5a8fd222 545 const struct lib_ring_buffer_config *config = &chan->backend.config;
f3bc08c5
MD
546 int cpu;
547
548 channel_iterator_unregister_notifiers(chan);
549 if (config->alloc == RING_BUFFER_ALLOC_PER_CPU) {
550#ifdef CONFIG_NO_HZ
551 /*
552 * Remove the nohz notifier first, so we are certain we stop
553 * the timers.
554 */
555 atomic_notifier_chain_unregister(&tick_nohz_notifier,
556 &chan->tick_nohz_notifier);
557 /*
558 * ring_buffer_nohz_lock will not be needed below, because
559 * we just removed the notifiers, which were the only source of
560 * concurrency.
561 */
562#endif /* CONFIG_NO_HZ */
563#ifdef CONFIG_HOTPLUG_CPU
564 get_online_cpus();
565 chan->cpu_hp_enable = 0;
566 for_each_online_cpu(cpu) {
567 struct lib_ring_buffer *buf = per_cpu_ptr(chan->backend.buf,
568 cpu);
569 lib_ring_buffer_stop_switch_timer(buf);
570 lib_ring_buffer_stop_read_timer(buf);
571 }
572 put_online_cpus();
573 unregister_cpu_notifier(&chan->cpu_hp_notifier);
574#else
575 for_each_possible_cpu(cpu) {
576 struct lib_ring_buffer *buf = per_cpu_ptr(chan->backend.buf,
577 cpu);
578 lib_ring_buffer_stop_switch_timer(buf);
579 lib_ring_buffer_stop_read_timer(buf);
580 }
581#endif
582 } else {
583 struct lib_ring_buffer *buf = chan->backend.buf;
584
585 lib_ring_buffer_stop_switch_timer(buf);
586 lib_ring_buffer_stop_read_timer(buf);
587 }
588 channel_backend_unregister_notifiers(&chan->backend);
589}
590
b63af41c
MD
591static void lib_ring_buffer_set_quiescent(struct lib_ring_buffer *buf)
592{
593 if (!buf->quiescent) {
594 buf->quiescent = true;
595 _lib_ring_buffer_switch_remote(buf, SWITCH_FLUSH);
596 }
597}
598
599static void lib_ring_buffer_clear_quiescent(struct lib_ring_buffer *buf)
600{
601 buf->quiescent = false;
602}
603
604void lib_ring_buffer_set_quiescent_channel(struct channel *chan)
605{
606 int cpu;
607 const struct lib_ring_buffer_config *config = &chan->backend.config;
608
609 if (config->alloc == RING_BUFFER_ALLOC_PER_CPU) {
610 get_online_cpus();
611 for_each_channel_cpu(cpu, chan) {
612 struct lib_ring_buffer *buf = per_cpu_ptr(chan->backend.buf,
613 cpu);
614
615 lib_ring_buffer_set_quiescent(buf);
616 }
617 put_online_cpus();
618 } else {
619 struct lib_ring_buffer *buf = chan->backend.buf;
620
621 lib_ring_buffer_set_quiescent(buf);
622 }
623}
624EXPORT_SYMBOL_GPL(lib_ring_buffer_set_quiescent_channel);
625
626void lib_ring_buffer_clear_quiescent_channel(struct channel *chan)
627{
628 int cpu;
629 const struct lib_ring_buffer_config *config = &chan->backend.config;
630
631 if (config->alloc == RING_BUFFER_ALLOC_PER_CPU) {
632 get_online_cpus();
633 for_each_channel_cpu(cpu, chan) {
634 struct lib_ring_buffer *buf = per_cpu_ptr(chan->backend.buf,
635 cpu);
636
637 lib_ring_buffer_clear_quiescent(buf);
638 }
639 put_online_cpus();
640 } else {
641 struct lib_ring_buffer *buf = chan->backend.buf;
642
643 lib_ring_buffer_clear_quiescent(buf);
644 }
645}
646EXPORT_SYMBOL_GPL(lib_ring_buffer_clear_quiescent_channel);
647
f3bc08c5
MD
648static void channel_free(struct channel *chan)
649{
dd5a0db3
MD
650 if (chan->backend.release_priv_ops) {
651 chan->backend.release_priv_ops(chan->backend.priv_ops);
652 }
f3bc08c5
MD
653 channel_iterator_free(chan);
654 channel_backend_free(&chan->backend);
655 kfree(chan);
656}
657
658/**
659 * channel_create - Create channel.
660 * @config: ring buffer instance configuration
661 * @name: name of the channel
662 * @priv: ring buffer client private data
663 * @buf_addr: pointer the the beginning of the preallocated buffer contiguous
664 * address mapping. It is used only by RING_BUFFER_STATIC
665 * configuration. It can be set to NULL for other backends.
666 * @subbuf_size: subbuffer size
667 * @num_subbuf: number of subbuffers
668 * @switch_timer_interval: Time interval (in us) to fill sub-buffers with
669 * padding to let readers get those sub-buffers.
670 * Used for live streaming.
671 * @read_timer_interval: Time interval (in us) to wake up pending readers.
672 *
673 * Holds cpu hotplug.
674 * Returns NULL on failure.
675 */
676struct channel *channel_create(const struct lib_ring_buffer_config *config,
677 const char *name, void *priv, void *buf_addr,
678 size_t subbuf_size,
679 size_t num_subbuf, unsigned int switch_timer_interval,
680 unsigned int read_timer_interval)
681{
682 int ret, cpu;
683 struct channel *chan;
684
685 if (lib_ring_buffer_check_config(config, switch_timer_interval,
686 read_timer_interval))
687 return NULL;
688
689 chan = kzalloc(sizeof(struct channel), GFP_KERNEL);
690 if (!chan)
691 return NULL;
692
693 ret = channel_backend_init(&chan->backend, name, config, priv,
694 subbuf_size, num_subbuf);
695 if (ret)
696 goto error;
697
698 ret = channel_iterator_init(chan);
699 if (ret)
700 goto error_free_backend;
701
702 chan->commit_count_mask = (~0UL >> chan->backend.num_subbuf_order);
703 chan->switch_timer_interval = usecs_to_jiffies(switch_timer_interval);
704 chan->read_timer_interval = usecs_to_jiffies(read_timer_interval);
f40270ad 705 kref_init(&chan->ref);
f3bc08c5 706 init_waitqueue_head(&chan->read_wait);
24cedcfe 707 init_waitqueue_head(&chan->hp_wait);
f3bc08c5
MD
708
709 if (config->alloc == RING_BUFFER_ALLOC_PER_CPU) {
23b908b0 710#if defined(CONFIG_NO_HZ) && defined(CONFIG_LIB_RING_BUFFER)
f3bc08c5
MD
711 /* Only benefit from NO_HZ idle with per-cpu buffers for now. */
712 chan->tick_nohz_notifier.notifier_call =
713 ring_buffer_tick_nohz_callback;
714 chan->tick_nohz_notifier.priority = ~0U;
715 atomic_notifier_chain_register(&tick_nohz_notifier,
716 &chan->tick_nohz_notifier);
23b908b0 717#endif /* defined(CONFIG_NO_HZ) && defined(CONFIG_LIB_RING_BUFFER) */
f3bc08c5
MD
718
719 /*
720 * In case of non-hotplug cpu, if the ring-buffer is allocated
721 * in early initcall, it will not be notified of secondary cpus.
722 * In that off case, we need to allocate for all possible cpus.
723 */
724#ifdef CONFIG_HOTPLUG_CPU
725 chan->cpu_hp_notifier.notifier_call =
726 lib_ring_buffer_cpu_hp_callback;
727 chan->cpu_hp_notifier.priority = 6;
728 register_cpu_notifier(&chan->cpu_hp_notifier);
729
730 get_online_cpus();
731 for_each_online_cpu(cpu) {
732 struct lib_ring_buffer *buf = per_cpu_ptr(chan->backend.buf,
733 cpu);
734 spin_lock(&per_cpu(ring_buffer_nohz_lock, cpu));
735 lib_ring_buffer_start_switch_timer(buf);
736 lib_ring_buffer_start_read_timer(buf);
737 spin_unlock(&per_cpu(ring_buffer_nohz_lock, cpu));
738 }
739 chan->cpu_hp_enable = 1;
740 put_online_cpus();
741#else
742 for_each_possible_cpu(cpu) {
743 struct lib_ring_buffer *buf = per_cpu_ptr(chan->backend.buf,
744 cpu);
745 spin_lock(&per_cpu(ring_buffer_nohz_lock, cpu));
746 lib_ring_buffer_start_switch_timer(buf);
747 lib_ring_buffer_start_read_timer(buf);
748 spin_unlock(&per_cpu(ring_buffer_nohz_lock, cpu));
749 }
750#endif
751 } else {
752 struct lib_ring_buffer *buf = chan->backend.buf;
753
754 lib_ring_buffer_start_switch_timer(buf);
755 lib_ring_buffer_start_read_timer(buf);
756 }
757
758 return chan;
759
760error_free_backend:
761 channel_backend_free(&chan->backend);
762error:
763 kfree(chan);
764 return NULL;
765}
766EXPORT_SYMBOL_GPL(channel_create);
767
f40270ad
MD
768static
769void channel_release(struct kref *kref)
770{
771 struct channel *chan = container_of(kref, struct channel, ref);
772 channel_free(chan);
773}
774
f3bc08c5
MD
775/**
776 * channel_destroy - Finalize, wait for q.s. and destroy channel.
777 * @chan: channel to destroy
778 *
779 * Holds cpu hotplug.
9a0df743
MD
780 * Call "destroy" callback, finalize channels, and then decrement the
781 * channel reference count. Note that when readers have completed data
782 * consumption of finalized channels, get_subbuf() will return -ENODATA.
783 * They should release their handle at that point. Returns the private
784 * data pointer.
f3bc08c5
MD
785 */
786void *channel_destroy(struct channel *chan)
787{
788 int cpu;
5a8fd222 789 const struct lib_ring_buffer_config *config = &chan->backend.config;
f3bc08c5
MD
790 void *priv;
791
792 channel_unregister_notifiers(chan);
793
794 if (config->alloc == RING_BUFFER_ALLOC_PER_CPU) {
795 /*
796 * No need to hold cpu hotplug, because all notifiers have been
797 * unregistered.
798 */
799 for_each_channel_cpu(cpu, chan) {
800 struct lib_ring_buffer *buf = per_cpu_ptr(chan->backend.buf,
801 cpu);
802
803 if (config->cb.buffer_finalize)
804 config->cb.buffer_finalize(buf,
805 chan->backend.priv,
806 cpu);
807 if (buf->backend.allocated)
b63af41c 808 lib_ring_buffer_set_quiescent(buf);
f3bc08c5
MD
809 /*
810 * Perform flush before writing to finalized.
811 */
812 smp_wmb();
813 ACCESS_ONCE(buf->finalized) = 1;
814 wake_up_interruptible(&buf->read_wait);
815 }
816 } else {
817 struct lib_ring_buffer *buf = chan->backend.buf;
818
819 if (config->cb.buffer_finalize)
820 config->cb.buffer_finalize(buf, chan->backend.priv, -1);
821 if (buf->backend.allocated)
b63af41c 822 lib_ring_buffer_set_quiescent(buf);
f3bc08c5
MD
823 /*
824 * Perform flush before writing to finalized.
825 */
826 smp_wmb();
827 ACCESS_ONCE(buf->finalized) = 1;
828 wake_up_interruptible(&buf->read_wait);
829 }
24cedcfe
MD
830 ACCESS_ONCE(chan->finalized) = 1;
831 wake_up_interruptible(&chan->hp_wait);
f3bc08c5 832 wake_up_interruptible(&chan->read_wait);
f3bc08c5 833 priv = chan->backend.priv;
ba1d61bc 834 kref_put(&chan->ref, channel_release);
f3bc08c5
MD
835 return priv;
836}
837EXPORT_SYMBOL_GPL(channel_destroy);
838
839struct lib_ring_buffer *channel_get_ring_buffer(
840 const struct lib_ring_buffer_config *config,
841 struct channel *chan, int cpu)
842{
843 if (config->alloc == RING_BUFFER_ALLOC_GLOBAL)
844 return chan->backend.buf;
845 else
846 return per_cpu_ptr(chan->backend.buf, cpu);
847}
848EXPORT_SYMBOL_GPL(channel_get_ring_buffer);
849
850int lib_ring_buffer_open_read(struct lib_ring_buffer *buf)
851{
852 struct channel *chan = buf->backend.chan;
853
854 if (!atomic_long_add_unless(&buf->active_readers, 1, 1))
855 return -EBUSY;
f40270ad 856 kref_get(&chan->ref);
505fb410 857 lttng_smp_mb__after_atomic();
f3bc08c5
MD
858 return 0;
859}
860EXPORT_SYMBOL_GPL(lib_ring_buffer_open_read);
861
862void lib_ring_buffer_release_read(struct lib_ring_buffer *buf)
863{
864 struct channel *chan = buf->backend.chan;
865
866 CHAN_WARN_ON(chan, atomic_long_read(&buf->active_readers) != 1);
505fb410 867 lttng_smp_mb__before_atomic();
f3bc08c5 868 atomic_long_dec(&buf->active_readers);
f40270ad 869 kref_put(&chan->ref, channel_release);
f3bc08c5
MD
870}
871EXPORT_SYMBOL_GPL(lib_ring_buffer_release_read);
872
873/*
874 * Promote compiler barrier to a smp_mb().
875 * For the specific ring buffer case, this IPI call should be removed if the
876 * architecture does not reorder writes. This should eventually be provided by
877 * a separate architecture-specific infrastructure.
878 */
879static void remote_mb(void *info)
880{
881 smp_mb();
882}
883
884/**
885 * lib_ring_buffer_snapshot - save subbuffer position snapshot (for read)
886 * @buf: ring buffer
887 * @consumed: consumed count indicating the position where to read
888 * @produced: produced count, indicates position when to stop reading
889 *
890 * Returns -ENODATA if buffer is finalized, -EAGAIN if there is currently no
891 * data to read at consumed position, or 0 if the get operation succeeds.
892 * Busy-loop trying to get data if the tick_nohz sequence lock is held.
893 */
894
895int lib_ring_buffer_snapshot(struct lib_ring_buffer *buf,
896 unsigned long *consumed, unsigned long *produced)
897{
898 struct channel *chan = buf->backend.chan;
5a8fd222 899 const struct lib_ring_buffer_config *config = &chan->backend.config;
f3bc08c5
MD
900 unsigned long consumed_cur, write_offset;
901 int finalized;
902
903retry:
904 finalized = ACCESS_ONCE(buf->finalized);
905 /*
906 * Read finalized before counters.
907 */
908 smp_rmb();
909 consumed_cur = atomic_long_read(&buf->consumed);
910 /*
911 * No need to issue a memory barrier between consumed count read and
912 * write offset read, because consumed count can only change
913 * concurrently in overwrite mode, and we keep a sequence counter
914 * identifier derived from the write offset to check we are getting
915 * the same sub-buffer we are expecting (the sub-buffers are atomically
916 * "tagged" upon writes, tags are checked upon read).
917 */
918 write_offset = v_read(config, &buf->offset);
919
920 /*
921 * Check that we are not about to read the same subbuffer in
922 * which the writer head is.
923 */
924 if (subbuf_trunc(write_offset, chan) - subbuf_trunc(consumed_cur, chan)
925 == 0)
926 goto nodata;
927
928 *consumed = consumed_cur;
929 *produced = subbuf_trunc(write_offset, chan);
930
931 return 0;
932
933nodata:
934 /*
935 * The memory barriers __wait_event()/wake_up_interruptible() take care
936 * of "raw_spin_is_locked" memory ordering.
937 */
938 if (finalized)
939 return -ENODATA;
940 else if (raw_spin_is_locked(&buf->raw_tick_nohz_spinlock))
941 goto retry;
942 else
943 return -EAGAIN;
944}
945EXPORT_SYMBOL_GPL(lib_ring_buffer_snapshot);
946
947/**
948 * lib_ring_buffer_put_snapshot - move consumed counter forward
71c1d843
MD
949 *
950 * Should only be called from consumer context.
f3bc08c5
MD
951 * @buf: ring buffer
952 * @consumed_new: new consumed count value
953 */
954void lib_ring_buffer_move_consumer(struct lib_ring_buffer *buf,
955 unsigned long consumed_new)
956{
957 struct lib_ring_buffer_backend *bufb = &buf->backend;
958 struct channel *chan = bufb->chan;
959 unsigned long consumed;
960
961 CHAN_WARN_ON(chan, atomic_long_read(&buf->active_readers) != 1);
962
963 /*
964 * Only push the consumed value forward.
965 * If the consumed cmpxchg fails, this is because we have been pushed by
966 * the writer in flight recorder mode.
967 */
968 consumed = atomic_long_read(&buf->consumed);
969 while ((long) consumed - (long) consumed_new < 0)
970 consumed = atomic_long_cmpxchg(&buf->consumed, consumed,
971 consumed_new);
71c1d843
MD
972 /* Wake-up the metadata producer */
973 wake_up_interruptible(&buf->write_wait);
f3bc08c5
MD
974}
975EXPORT_SYMBOL_GPL(lib_ring_buffer_move_consumer);
976
977/**
978 * lib_ring_buffer_get_subbuf - get exclusive access to subbuffer for reading
979 * @buf: ring buffer
980 * @consumed: consumed count indicating the position where to read
981 *
982 * Returns -ENODATA if buffer is finalized, -EAGAIN if there is currently no
983 * data to read at consumed position, or 0 if the get operation succeeds.
984 * Busy-loop trying to get data if the tick_nohz sequence lock is held.
985 */
986int lib_ring_buffer_get_subbuf(struct lib_ring_buffer *buf,
987 unsigned long consumed)
988{
989 struct channel *chan = buf->backend.chan;
5a8fd222 990 const struct lib_ring_buffer_config *config = &chan->backend.config;
f3bc08c5
MD
991 unsigned long consumed_cur, consumed_idx, commit_count, write_offset;
992 int ret;
993 int finalized;
994
8202b8a0
MD
995 if (buf->get_subbuf) {
996 /*
997 * Reader is trying to get a subbuffer twice.
998 */
999 CHAN_WARN_ON(chan, 1);
1000 return -EBUSY;
1001 }
f3bc08c5
MD
1002retry:
1003 finalized = ACCESS_ONCE(buf->finalized);
1004 /*
1005 * Read finalized before counters.
1006 */
1007 smp_rmb();
1008 consumed_cur = atomic_long_read(&buf->consumed);
1009 consumed_idx = subbuf_index(consumed, chan);
1010 commit_count = v_read(config, &buf->commit_cold[consumed_idx].cc_sb);
1011 /*
1012 * Make sure we read the commit count before reading the buffer
1013 * data and the write offset. Correct consumed offset ordering
1014 * wrt commit count is insured by the use of cmpxchg to update
1015 * the consumed offset.
1016 * smp_call_function_single can fail if the remote CPU is offline,
1017 * this is OK because then there is no wmb to execute there.
1018 * If our thread is executing on the same CPU as the on the buffers
1019 * belongs to, we don't have to synchronize it at all. If we are
1020 * migrated, the scheduler will take care of the memory barriers.
1021 * Normally, smp_call_function_single() should ensure program order when
1022 * executing the remote function, which implies that it surrounds the
1023 * function execution with :
1024 * smp_mb()
1025 * send IPI
1026 * csd_lock_wait
1027 * recv IPI
1028 * smp_mb()
1029 * exec. function
1030 * smp_mb()
1031 * csd unlock
1032 * smp_mb()
1033 *
1034 * However, smp_call_function_single() does not seem to clearly execute
1035 * such barriers. It depends on spinlock semantic to provide the barrier
1036 * before executing the IPI and, when busy-looping, csd_lock_wait only
1037 * executes smp_mb() when it has to wait for the other CPU.
1038 *
1039 * I don't trust this code. Therefore, let's add the smp_mb() sequence
1040 * required ourself, even if duplicated. It has no performance impact
1041 * anyway.
1042 *
1043 * smp_mb() is needed because smp_rmb() and smp_wmb() only order read vs
1044 * read and write vs write. They do not ensure core synchronization. We
1045 * really have to ensure total order between the 3 barriers running on
1046 * the 2 CPUs.
1047 */
1048 if (config->ipi == RING_BUFFER_IPI_BARRIER) {
1049 if (config->sync == RING_BUFFER_SYNC_PER_CPU
1050 && config->alloc == RING_BUFFER_ALLOC_PER_CPU) {
1051 if (raw_smp_processor_id() != buf->backend.cpu) {
1052 /* Total order with IPI handler smp_mb() */
1053 smp_mb();
1054 smp_call_function_single(buf->backend.cpu,
1055 remote_mb, NULL, 1);
1056 /* Total order with IPI handler smp_mb() */
1057 smp_mb();
1058 }
1059 } else {
1060 /* Total order with IPI handler smp_mb() */
1061 smp_mb();
1062 smp_call_function(remote_mb, NULL, 1);
1063 /* Total order with IPI handler smp_mb() */
1064 smp_mb();
1065 }
1066 } else {
1067 /*
1068 * Local rmb to match the remote wmb to read the commit count
1069 * before the buffer data and the write offset.
1070 */
1071 smp_rmb();
1072 }
1073
1074 write_offset = v_read(config, &buf->offset);
1075
1076 /*
1077 * Check that the buffer we are getting is after or at consumed_cur
1078 * position.
1079 */
1080 if ((long) subbuf_trunc(consumed, chan)
1081 - (long) subbuf_trunc(consumed_cur, chan) < 0)
1082 goto nodata;
1083
1084 /*
1085 * Check that the subbuffer we are trying to consume has been
1086 * already fully committed.
1087 */
1088 if (((commit_count - chan->backend.subbuf_size)
1089 & chan->commit_count_mask)
c9b3b5e2 1090 - (buf_trunc(consumed, chan)
f3bc08c5
MD
1091 >> chan->backend.num_subbuf_order)
1092 != 0)
1093 goto nodata;
1094
1095 /*
1096 * Check that we are not about to read the same subbuffer in
1097 * which the writer head is.
1098 */
c9b3b5e2 1099 if (subbuf_trunc(write_offset, chan) - subbuf_trunc(consumed, chan)
f3bc08c5
MD
1100 == 0)
1101 goto nodata;
1102
1103 /*
1104 * Failure to get the subbuffer causes a busy-loop retry without going
1105 * to a wait queue. These are caused by short-lived race windows where
1106 * the writer is getting access to a subbuffer we were trying to get
1107 * access to. Also checks that the "consumed" buffer count we are
1108 * looking for matches the one contained in the subbuffer id.
1109 */
1110 ret = update_read_sb_index(config, &buf->backend, &chan->backend,
1111 consumed_idx, buf_trunc_val(consumed, chan));
1112 if (ret)
1113 goto retry;
1114 subbuffer_id_clear_noref(config, &buf->backend.buf_rsb.id);
1115
1116 buf->get_subbuf_consumed = consumed;
1117 buf->get_subbuf = 1;
1118
1119 return 0;
1120
1121nodata:
1122 /*
1123 * The memory barriers __wait_event()/wake_up_interruptible() take care
1124 * of "raw_spin_is_locked" memory ordering.
1125 */
1126 if (finalized)
1127 return -ENODATA;
1128 else if (raw_spin_is_locked(&buf->raw_tick_nohz_spinlock))
1129 goto retry;
1130 else
1131 return -EAGAIN;
1132}
1133EXPORT_SYMBOL_GPL(lib_ring_buffer_get_subbuf);
1134
1135/**
1136 * lib_ring_buffer_put_subbuf - release exclusive subbuffer access
1137 * @buf: ring buffer
1138 */
1139void lib_ring_buffer_put_subbuf(struct lib_ring_buffer *buf)
1140{
1141 struct lib_ring_buffer_backend *bufb = &buf->backend;
1142 struct channel *chan = bufb->chan;
5a8fd222 1143 const struct lib_ring_buffer_config *config = &chan->backend.config;
f3bc08c5
MD
1144 unsigned long read_sb_bindex, consumed_idx, consumed;
1145
1146 CHAN_WARN_ON(chan, atomic_long_read(&buf->active_readers) != 1);
1147
1148 if (!buf->get_subbuf) {
1149 /*
1150 * Reader puts a subbuffer it did not get.
1151 */
1152 CHAN_WARN_ON(chan, 1);
1153 return;
1154 }
1155 consumed = buf->get_subbuf_consumed;
1156 buf->get_subbuf = 0;
1157
1158 /*
1159 * Clear the records_unread counter. (overruns counter)
1160 * Can still be non-zero if a file reader simply grabbed the data
1161 * without using iterators.
1162 * Can be below zero if an iterator is used on a snapshot more than
1163 * once.
1164 */
1165 read_sb_bindex = subbuffer_id_get_index(config, bufb->buf_rsb.id);
1166 v_add(config, v_read(config,
1167 &bufb->array[read_sb_bindex]->records_unread),
1168 &bufb->records_read);
1169 v_set(config, &bufb->array[read_sb_bindex]->records_unread, 0);
1170 CHAN_WARN_ON(chan, config->mode == RING_BUFFER_OVERWRITE
1171 && subbuffer_id_is_noref(config, bufb->buf_rsb.id));
1172 subbuffer_id_set_noref(config, &bufb->buf_rsb.id);
1173
1174 /*
1175 * Exchange the reader subbuffer with the one we put in its place in the
1176 * writer subbuffer table. Expect the original consumed count. If
1177 * update_read_sb_index fails, this is because the writer updated the
1178 * subbuffer concurrently. We should therefore keep the subbuffer we
1179 * currently have: it has become invalid to try reading this sub-buffer
1180 * consumed count value anyway.
1181 */
1182 consumed_idx = subbuf_index(consumed, chan);
1183 update_read_sb_index(config, &buf->backend, &chan->backend,
1184 consumed_idx, buf_trunc_val(consumed, chan));
1185 /*
1186 * update_read_sb_index return value ignored. Don't exchange sub-buffer
1187 * if the writer concurrently updated it.
1188 */
1189}
1190EXPORT_SYMBOL_GPL(lib_ring_buffer_put_subbuf);
1191
1192/*
1193 * cons_offset is an iterator on all subbuffer offsets between the reader
1194 * position and the writer position. (inclusive)
1195 */
1196static
1197void lib_ring_buffer_print_subbuffer_errors(struct lib_ring_buffer *buf,
1198 struct channel *chan,
1199 unsigned long cons_offset,
1200 int cpu)
1201{
5a8fd222 1202 const struct lib_ring_buffer_config *config = &chan->backend.config;
f3bc08c5
MD
1203 unsigned long cons_idx, commit_count, commit_count_sb;
1204
1205 cons_idx = subbuf_index(cons_offset, chan);
1206 commit_count = v_read(config, &buf->commit_hot[cons_idx].cc);
1207 commit_count_sb = v_read(config, &buf->commit_cold[cons_idx].cc_sb);
1208
1209 if (subbuf_offset(commit_count, chan) != 0)
1210 printk(KERN_WARNING
1211 "ring buffer %s, cpu %d: "
1212 "commit count in subbuffer %lu,\n"
1213 "expecting multiples of %lu bytes\n"
1214 " [ %lu bytes committed, %lu bytes reader-visible ]\n",
1215 chan->backend.name, cpu, cons_idx,
1216 chan->backend.subbuf_size,
1217 commit_count, commit_count_sb);
1218
1219 printk(KERN_DEBUG "ring buffer: %s, cpu %d: %lu bytes committed\n",
1220 chan->backend.name, cpu, commit_count);
1221}
1222
1223static
1224void lib_ring_buffer_print_buffer_errors(struct lib_ring_buffer *buf,
1225 struct channel *chan,
1226 void *priv, int cpu)
1227{
5a8fd222 1228 const struct lib_ring_buffer_config *config = &chan->backend.config;
f3bc08c5
MD
1229 unsigned long write_offset, cons_offset;
1230
f3bc08c5
MD
1231 /*
1232 * No need to order commit_count, write_offset and cons_offset reads
1233 * because we execute at teardown when no more writer nor reader
1234 * references are left.
1235 */
1236 write_offset = v_read(config, &buf->offset);
1237 cons_offset = atomic_long_read(&buf->consumed);
1238 if (write_offset != cons_offset)
05aad775 1239 printk(KERN_DEBUG
f3bc08c5
MD
1240 "ring buffer %s, cpu %d: "
1241 "non-consumed data\n"
1242 " [ %lu bytes written, %lu bytes read ]\n",
1243 chan->backend.name, cpu, write_offset, cons_offset);
1244
1245 for (cons_offset = atomic_long_read(&buf->consumed);
1246 (long) (subbuf_trunc((unsigned long) v_read(config, &buf->offset),
1247 chan)
1248 - cons_offset) > 0;
1249 cons_offset = subbuf_align(cons_offset, chan))
1250 lib_ring_buffer_print_subbuffer_errors(buf, chan, cons_offset,
1251 cpu);
1252}
1253
1254static
1255void lib_ring_buffer_print_errors(struct channel *chan,
1256 struct lib_ring_buffer *buf, int cpu)
1257{
5a8fd222 1258 const struct lib_ring_buffer_config *config = &chan->backend.config;
f3bc08c5
MD
1259 void *priv = chan->backend.priv;
1260
ec01ec93
MD
1261 if (!strcmp(chan->backend.name, "relay-metadata")) {
1262 printk(KERN_DEBUG "ring buffer %s: %lu records written, "
1263 "%lu records overrun\n",
1264 chan->backend.name,
1265 v_read(config, &buf->records_count),
1266 v_read(config, &buf->records_overrun));
1267 } else {
1268 printk(KERN_DEBUG "ring buffer %s, cpu %d: %lu records written, "
1269 "%lu records overrun\n",
1270 chan->backend.name, cpu,
1271 v_read(config, &buf->records_count),
1272 v_read(config, &buf->records_overrun));
1273
1274 if (v_read(config, &buf->records_lost_full)
1275 || v_read(config, &buf->records_lost_wrap)
1276 || v_read(config, &buf->records_lost_big))
1277 printk(KERN_WARNING
1278 "ring buffer %s, cpu %d: records were lost. Caused by:\n"
1279 " [ %lu buffer full, %lu nest buffer wrap-around, "
1280 "%lu event too big ]\n",
1281 chan->backend.name, cpu,
1282 v_read(config, &buf->records_lost_full),
1283 v_read(config, &buf->records_lost_wrap),
1284 v_read(config, &buf->records_lost_big));
1285 }
f3bc08c5
MD
1286 lib_ring_buffer_print_buffer_errors(buf, chan, priv, cpu);
1287}
1288
1289/*
1290 * lib_ring_buffer_switch_old_start: Populate old subbuffer header.
1291 *
1292 * Only executed when the buffer is finalized, in SWITCH_FLUSH.
1293 */
1294static
1295void lib_ring_buffer_switch_old_start(struct lib_ring_buffer *buf,
1296 struct channel *chan,
1297 struct switch_offsets *offsets,
1298 u64 tsc)
1299{
5a8fd222 1300 const struct lib_ring_buffer_config *config = &chan->backend.config;
f3bc08c5
MD
1301 unsigned long oldidx = subbuf_index(offsets->old, chan);
1302 unsigned long commit_count;
1303
1304 config->cb.buffer_begin(buf, tsc, oldidx);
1305
1306 /*
1307 * Order all writes to buffer before the commit count update that will
1308 * determine that the subbuffer is full.
1309 */
1310 if (config->ipi == RING_BUFFER_IPI_BARRIER) {
1311 /*
1312 * Must write slot data before incrementing commit count. This
1313 * compiler barrier is upgraded into a smp_mb() by the IPI sent
1314 * by get_subbuf().
1315 */
1316 barrier();
1317 } else
1318 smp_wmb();
1319 v_add(config, config->cb.subbuffer_header_size(),
1320 &buf->commit_hot[oldidx].cc);
1321 commit_count = v_read(config, &buf->commit_hot[oldidx].cc);
1322 /* Check if the written buffer has to be delivered */
1323 lib_ring_buffer_check_deliver(config, buf, chan, offsets->old,
635e457c 1324 commit_count, oldidx, tsc);
f3bc08c5 1325 lib_ring_buffer_write_commit_counter(config, buf, chan, oldidx,
7915e163
MD
1326 offsets->old + config->cb.subbuffer_header_size(),
1327 commit_count);
f3bc08c5
MD
1328}
1329
1330/*
1331 * lib_ring_buffer_switch_old_end: switch old subbuffer
1332 *
1333 * Note : offset_old should never be 0 here. It is ok, because we never perform
1334 * buffer switch on an empty subbuffer in SWITCH_ACTIVE mode. The caller
1335 * increments the offset_old value when doing a SWITCH_FLUSH on an empty
1336 * subbuffer.
1337 */
1338static
1339void lib_ring_buffer_switch_old_end(struct lib_ring_buffer *buf,
1340 struct channel *chan,
1341 struct switch_offsets *offsets,
1342 u64 tsc)
1343{
5a8fd222 1344 const struct lib_ring_buffer_config *config = &chan->backend.config;
f3bc08c5
MD
1345 unsigned long oldidx = subbuf_index(offsets->old - 1, chan);
1346 unsigned long commit_count, padding_size, data_size;
1347
1348 data_size = subbuf_offset(offsets->old - 1, chan) + 1;
1349 padding_size = chan->backend.subbuf_size - data_size;
1350 subbuffer_set_data_size(config, &buf->backend, oldidx, data_size);
1351
1352 /*
1353 * Order all writes to buffer before the commit count update that will
1354 * determine that the subbuffer is full.
1355 */
1356 if (config->ipi == RING_BUFFER_IPI_BARRIER) {
1357 /*
1358 * Must write slot data before incrementing commit count. This
1359 * compiler barrier is upgraded into a smp_mb() by the IPI sent
1360 * by get_subbuf().
1361 */
1362 barrier();
1363 } else
1364 smp_wmb();
1365 v_add(config, padding_size, &buf->commit_hot[oldidx].cc);
1366 commit_count = v_read(config, &buf->commit_hot[oldidx].cc);
1367 lib_ring_buffer_check_deliver(config, buf, chan, offsets->old - 1,
635e457c 1368 commit_count, oldidx, tsc);
f3bc08c5 1369 lib_ring_buffer_write_commit_counter(config, buf, chan, oldidx,
7915e163 1370 offsets->old + padding_size, commit_count);
f3bc08c5
MD
1371}
1372
1373/*
1374 * lib_ring_buffer_switch_new_start: Populate new subbuffer.
1375 *
1376 * This code can be executed unordered : writers may already have written to the
1377 * sub-buffer before this code gets executed, caution. The commit makes sure
1378 * that this code is executed before the deliver of this sub-buffer.
1379 */
1380static
1381void lib_ring_buffer_switch_new_start(struct lib_ring_buffer *buf,
1382 struct channel *chan,
1383 struct switch_offsets *offsets,
1384 u64 tsc)
1385{
5a8fd222 1386 const struct lib_ring_buffer_config *config = &chan->backend.config;
f3bc08c5
MD
1387 unsigned long beginidx = subbuf_index(offsets->begin, chan);
1388 unsigned long commit_count;
1389
1390 config->cb.buffer_begin(buf, tsc, beginidx);
1391
1392 /*
1393 * Order all writes to buffer before the commit count update that will
1394 * determine that the subbuffer is full.
1395 */
1396 if (config->ipi == RING_BUFFER_IPI_BARRIER) {
1397 /*
1398 * Must write slot data before incrementing commit count. This
1399 * compiler barrier is upgraded into a smp_mb() by the IPI sent
1400 * by get_subbuf().
1401 */
1402 barrier();
1403 } else
1404 smp_wmb();
1405 v_add(config, config->cb.subbuffer_header_size(),
1406 &buf->commit_hot[beginidx].cc);
1407 commit_count = v_read(config, &buf->commit_hot[beginidx].cc);
1408 /* Check if the written buffer has to be delivered */
1409 lib_ring_buffer_check_deliver(config, buf, chan, offsets->begin,
635e457c 1410 commit_count, beginidx, tsc);
f3bc08c5 1411 lib_ring_buffer_write_commit_counter(config, buf, chan, beginidx,
7915e163
MD
1412 offsets->begin + config->cb.subbuffer_header_size(),
1413 commit_count);
f3bc08c5
MD
1414}
1415
f5ea5800
MD
1416/*
1417 * lib_ring_buffer_switch_new_end: finish switching current subbuffer
1418 *
768b05c9
MD
1419 * Calls subbuffer_set_data_size() to set the data size of the current
1420 * sub-buffer. We do not need to perform check_deliver nor commit here,
1421 * since this task will be done by the "commit" of the event for which
1422 * we are currently doing the space reservation.
f5ea5800
MD
1423 */
1424static
1425void lib_ring_buffer_switch_new_end(struct lib_ring_buffer *buf,
1426 struct channel *chan,
1427 struct switch_offsets *offsets,
1428 u64 tsc)
1429{
1430 const struct lib_ring_buffer_config *config = &chan->backend.config;
768b05c9 1431 unsigned long endidx, data_size;
f5ea5800 1432
768b05c9 1433 endidx = subbuf_index(offsets->end - 1, chan);
f5ea5800 1434 data_size = subbuf_offset(offsets->end - 1, chan) + 1;
f5ea5800 1435 subbuffer_set_data_size(config, &buf->backend, endidx, data_size);
f5ea5800
MD
1436}
1437
f3bc08c5
MD
1438/*
1439 * Returns :
1440 * 0 if ok
1441 * !0 if execution must be aborted.
1442 */
1443static
1444int lib_ring_buffer_try_switch_slow(enum switch_mode mode,
1445 struct lib_ring_buffer *buf,
1446 struct channel *chan,
1447 struct switch_offsets *offsets,
1448 u64 *tsc)
1449{
5a8fd222 1450 const struct lib_ring_buffer_config *config = &chan->backend.config;
5334a2c5 1451 unsigned long off, reserve_commit_diff;
f3bc08c5
MD
1452
1453 offsets->begin = v_read(config, &buf->offset);
1454 offsets->old = offsets->begin;
1455 offsets->switch_old_start = 0;
1456 off = subbuf_offset(offsets->begin, chan);
1457
1458 *tsc = config->cb.ring_buffer_clock_read(chan);
1459
1460 /*
1461 * Ensure we flush the header of an empty subbuffer when doing the
1462 * finalize (SWITCH_FLUSH). This ensures that we end up knowing the
1463 * total data gathering duration even if there were no records saved
1464 * after the last buffer switch.
1465 * In SWITCH_ACTIVE mode, switch the buffer when it contains events.
1466 * SWITCH_ACTIVE only flushes the current subbuffer, dealing with end of
1467 * subbuffer header as appropriate.
1468 * The next record that reserves space will be responsible for
1469 * populating the following subbuffer header. We choose not to populate
1470 * the next subbuffer header here because we want to be able to use
1471 * SWITCH_ACTIVE for periodical buffer flush and CPU tick_nohz stop
1472 * buffer flush, which must guarantee that all the buffer content
1473 * (records and header timestamps) are visible to the reader. This is
1474 * required for quiescence guarantees for the fusion merge.
1475 */
5334a2c5
MD
1476 if (mode != SWITCH_FLUSH && !off)
1477 return -1; /* we do not have to switch : buffer is empty */
1478
1479 if (unlikely(off == 0)) {
1480 unsigned long sb_index, commit_count;
1481
1482 /*
1483 * We are performing a SWITCH_FLUSH. At this stage, there are no
1484 * concurrent writes into the buffer.
1485 *
1486 * The client does not save any header information. Don't
1487 * switch empty subbuffer on finalize, because it is invalid to
1488 * deliver a completely empty subbuffer.
1489 */
1490 if (!config->cb.subbuffer_header_size())
1491 return -1;
1492
1493 /* Test new buffer integrity */
1494 sb_index = subbuf_index(offsets->begin, chan);
1495 commit_count = v_read(config,
1496 &buf->commit_cold[sb_index].cc_sb);
1497 reserve_commit_diff =
1498 (buf_trunc(offsets->begin, chan)
1499 >> chan->backend.num_subbuf_order)
1500 - (commit_count & chan->commit_count_mask);
1501 if (likely(reserve_commit_diff == 0)) {
1502 /* Next subbuffer not being written to. */
1503 if (unlikely(config->mode != RING_BUFFER_OVERWRITE &&
1504 subbuf_trunc(offsets->begin, chan)
1505 - subbuf_trunc((unsigned long)
1506 atomic_long_read(&buf->consumed), chan)
1507 >= chan->backend.buf_size)) {
1508 /*
1509 * We do not overwrite non consumed buffers
1510 * and we are full : don't switch.
1511 */
f3bc08c5 1512 return -1;
5334a2c5
MD
1513 } else {
1514 /*
1515 * Next subbuffer not being written to, and we
1516 * are either in overwrite mode or the buffer is
1517 * not full. It's safe to write in this new
1518 * subbuffer.
1519 */
1520 }
1521 } else {
f3bc08c5 1522 /*
5334a2c5
MD
1523 * Next subbuffer reserve offset does not match the
1524 * commit offset. Don't perform switch in
1525 * producer-consumer and overwrite mode. Caused by
1526 * either a writer OOPS or too many nested writes over a
1527 * reserve/commit pair.
f3bc08c5 1528 */
5334a2c5 1529 return -1;
f3bc08c5 1530 }
5334a2c5
MD
1531
1532 /*
1533 * Need to write the subbuffer start header on finalize.
1534 */
1535 offsets->switch_old_start = 1;
1536 }
1537 offsets->begin = subbuf_align(offsets->begin, chan);
f3bc08c5
MD
1538 /* Note: old points to the next subbuf at offset 0 */
1539 offsets->end = offsets->begin;
1540 return 0;
1541}
1542
1543/*
1544 * Force a sub-buffer switch. This operation is completely reentrant : can be
1545 * called while tracing is active with absolutely no lock held.
1546 *
1547 * Note, however, that as a v_cmpxchg is used for some atomic
1548 * operations, this function must be called from the CPU which owns the buffer
1549 * for a ACTIVE flush.
1550 */
1551void lib_ring_buffer_switch_slow(struct lib_ring_buffer *buf, enum switch_mode mode)
1552{
1553 struct channel *chan = buf->backend.chan;
5a8fd222 1554 const struct lib_ring_buffer_config *config = &chan->backend.config;
f3bc08c5
MD
1555 struct switch_offsets offsets;
1556 unsigned long oldidx;
1557 u64 tsc;
1558
1559 offsets.size = 0;
1560
1561 /*
1562 * Perform retryable operations.
1563 */
1564 do {
1565 if (lib_ring_buffer_try_switch_slow(mode, buf, chan, &offsets,
1566 &tsc))
1567 return; /* Switch not needed */
1568 } while (v_cmpxchg(config, &buf->offset, offsets.old, offsets.end)
1569 != offsets.old);
1570
1571 /*
1572 * Atomically update last_tsc. This update races against concurrent
1573 * atomic updates, but the race will always cause supplementary full TSC
1574 * records, never the opposite (missing a full TSC record when it would
1575 * be needed).
1576 */
1577 save_last_tsc(config, buf, tsc);
1578
1579 /*
1580 * Push the reader if necessary
1581 */
1582 lib_ring_buffer_reserve_push_reader(buf, chan, offsets.old);
1583
1584 oldidx = subbuf_index(offsets.old, chan);
1585 lib_ring_buffer_clear_noref(config, &buf->backend, oldidx);
1586
1587 /*
1588 * May need to populate header start on SWITCH_FLUSH.
1589 */
1590 if (offsets.switch_old_start) {
1591 lib_ring_buffer_switch_old_start(buf, chan, &offsets, tsc);
1592 offsets.old += config->cb.subbuffer_header_size();
1593 }
1594
1595 /*
1596 * Switch old subbuffer.
1597 */
1598 lib_ring_buffer_switch_old_end(buf, chan, &offsets, tsc);
1599}
1600EXPORT_SYMBOL_GPL(lib_ring_buffer_switch_slow);
1601
5e391252
MD
1602static void remote_switch(void *info)
1603{
1604 struct lib_ring_buffer *buf = info;
1605
1606 lib_ring_buffer_switch_slow(buf, SWITCH_ACTIVE);
1607}
1608
b63af41c
MD
1609static void _lib_ring_buffer_switch_remote(struct lib_ring_buffer *buf,
1610 enum switch_mode mode)
5e391252
MD
1611{
1612 struct channel *chan = buf->backend.chan;
1613 const struct lib_ring_buffer_config *config = &chan->backend.config;
1614 int ret;
1615
1616 /*
1617 * With global synchronization we don't need to use the IPI scheme.
1618 */
1619 if (config->sync == RING_BUFFER_SYNC_GLOBAL) {
b63af41c 1620 lib_ring_buffer_switch_slow(buf, mode);
5e391252
MD
1621 return;
1622 }
1623
1624 /*
1625 * Taking lock on CPU hotplug to ensure two things: first, that the
1626 * target cpu is not taken concurrently offline while we are within
1627 * smp_call_function_single() (I don't trust that get_cpu() on the
1628 * _local_ CPU actually inhibit CPU hotplug for the _remote_ CPU (to be
1629 * confirmed)). Secondly, if it happens that the CPU is not online, our
1630 * own call to lib_ring_buffer_switch_slow() needs to be protected from
1631 * CPU hotplug handlers, which can also perform a remote subbuffer
1632 * switch.
1633 */
1634 get_online_cpus();
1635 ret = smp_call_function_single(buf->backend.cpu,
1636 remote_switch, buf, 1);
1637 if (ret) {
1638 /* Remote CPU is offline, do it ourself. */
b63af41c 1639 lib_ring_buffer_switch_slow(buf, mode);
5e391252
MD
1640 }
1641 put_online_cpus();
1642}
b63af41c
MD
1643
1644void lib_ring_buffer_switch_remote(struct lib_ring_buffer *buf)
1645{
1646 _lib_ring_buffer_switch_remote(buf, SWITCH_ACTIVE);
1647}
5e391252
MD
1648EXPORT_SYMBOL_GPL(lib_ring_buffer_switch_remote);
1649
f3bc08c5
MD
1650/*
1651 * Returns :
1652 * 0 if ok
97ca2c54
MD
1653 * -ENOSPC if event size is too large for packet.
1654 * -ENOBUFS if there is currently not enough space in buffer for the event.
1655 * -EIO if data cannot be written into the buffer for any other reason.
f3bc08c5
MD
1656 */
1657static
1658int lib_ring_buffer_try_reserve_slow(struct lib_ring_buffer *buf,
1659 struct channel *chan,
1660 struct switch_offsets *offsets,
1661 struct lib_ring_buffer_ctx *ctx)
1662{
5a8fd222 1663 const struct lib_ring_buffer_config *config = &chan->backend.config;
0fdec686 1664 unsigned long reserve_commit_diff, offset_cmp;
f3bc08c5 1665
0fdec686
MD
1666retry:
1667 offsets->begin = offset_cmp = v_read(config, &buf->offset);
f3bc08c5
MD
1668 offsets->old = offsets->begin;
1669 offsets->switch_new_start = 0;
f5ea5800 1670 offsets->switch_new_end = 0;
f3bc08c5
MD
1671 offsets->switch_old_end = 0;
1672 offsets->pre_header_padding = 0;
1673
1674 ctx->tsc = config->cb.ring_buffer_clock_read(chan);
97ca2c54
MD
1675 if ((int64_t) ctx->tsc == -EIO)
1676 return -EIO;
f3bc08c5
MD
1677
1678 if (last_tsc_overflow(config, buf, ctx->tsc))
64c796d8 1679 ctx->rflags |= RING_BUFFER_RFLAG_FULL_TSC;
f3bc08c5
MD
1680
1681 if (unlikely(subbuf_offset(offsets->begin, ctx->chan) == 0)) {
1682 offsets->switch_new_start = 1; /* For offsets->begin */
1683 } else {
1684 offsets->size = config->cb.record_header_size(config, chan,
1685 offsets->begin,
f3bc08c5 1686 &offsets->pre_header_padding,
64c796d8 1687 ctx);
f3bc08c5
MD
1688 offsets->size +=
1689 lib_ring_buffer_align(offsets->begin + offsets->size,
1690 ctx->largest_align)
1691 + ctx->data_size;
1692 if (unlikely(subbuf_offset(offsets->begin, chan) +
1693 offsets->size > chan->backend.subbuf_size)) {
1694 offsets->switch_old_end = 1; /* For offsets->old */
1695 offsets->switch_new_start = 1; /* For offsets->begin */
1696 }
1697 }
1698 if (unlikely(offsets->switch_new_start)) {
0fdec686 1699 unsigned long sb_index, commit_count;
f3bc08c5
MD
1700
1701 /*
1702 * We are typically not filling the previous buffer completely.
1703 */
1704 if (likely(offsets->switch_old_end))
1705 offsets->begin = subbuf_align(offsets->begin, chan);
1706 offsets->begin = offsets->begin
1707 + config->cb.subbuffer_header_size();
1708 /* Test new buffer integrity */
1709 sb_index = subbuf_index(offsets->begin, chan);
0fdec686
MD
1710 /*
1711 * Read buf->offset before buf->commit_cold[sb_index].cc_sb.
1712 * lib_ring_buffer_check_deliver() has the matching
1713 * memory barriers required around commit_cold cc_sb
1714 * updates to ensure reserve and commit counter updates
1715 * are not seen reordered when updated by another CPU.
1716 */
1717 smp_rmb();
1718 commit_count = v_read(config,
1719 &buf->commit_cold[sb_index].cc_sb);
1720 /* Read buf->commit_cold[sb_index].cc_sb before buf->offset. */
1721 smp_rmb();
1722 if (unlikely(offset_cmp != v_read(config, &buf->offset))) {
1723 /*
1724 * The reserve counter have been concurrently updated
1725 * while we read the commit counter. This means the
1726 * commit counter we read might not match buf->offset
1727 * due to concurrent update. We therefore need to retry.
1728 */
1729 goto retry;
1730 }
f3bc08c5
MD
1731 reserve_commit_diff =
1732 (buf_trunc(offsets->begin, chan)
1733 >> chan->backend.num_subbuf_order)
0fdec686 1734 - (commit_count & chan->commit_count_mask);
f3bc08c5
MD
1735 if (likely(reserve_commit_diff == 0)) {
1736 /* Next subbuffer not being written to. */
1737 if (unlikely(config->mode != RING_BUFFER_OVERWRITE &&
1738 subbuf_trunc(offsets->begin, chan)
1739 - subbuf_trunc((unsigned long)
1740 atomic_long_read(&buf->consumed), chan)
1741 >= chan->backend.buf_size)) {
1742 /*
1743 * We do not overwrite non consumed buffers
1744 * and we are full : record is lost.
1745 */
1746 v_inc(config, &buf->records_lost_full);
97ca2c54 1747 return -ENOBUFS;
f3bc08c5
MD
1748 } else {
1749 /*
1750 * Next subbuffer not being written to, and we
1751 * are either in overwrite mode or the buffer is
1752 * not full. It's safe to write in this new
1753 * subbuffer.
1754 */
1755 }
1756 } else {
1757 /*
1758 * Next subbuffer reserve offset does not match the
0fdec686
MD
1759 * commit offset, and this did not involve update to the
1760 * reserve counter. Drop record in producer-consumer and
1761 * overwrite mode. Caused by either a writer OOPS or
1762 * too many nested writes over a reserve/commit pair.
f3bc08c5
MD
1763 */
1764 v_inc(config, &buf->records_lost_wrap);
97ca2c54 1765 return -EIO;
f3bc08c5
MD
1766 }
1767 offsets->size =
1768 config->cb.record_header_size(config, chan,
1769 offsets->begin,
f3bc08c5 1770 &offsets->pre_header_padding,
64c796d8 1771 ctx);
f3bc08c5
MD
1772 offsets->size +=
1773 lib_ring_buffer_align(offsets->begin + offsets->size,
1774 ctx->largest_align)
1775 + ctx->data_size;
1776 if (unlikely(subbuf_offset(offsets->begin, chan)
1777 + offsets->size > chan->backend.subbuf_size)) {
1778 /*
1779 * Record too big for subbuffers, report error, don't
1780 * complete the sub-buffer switch.
1781 */
1782 v_inc(config, &buf->records_lost_big);
97ca2c54 1783 return -ENOSPC;
f3bc08c5
MD
1784 } else {
1785 /*
1786 * We just made a successful buffer switch and the
1787 * record fits in the new subbuffer. Let's write.
1788 */
1789 }
1790 } else {
1791 /*
1792 * Record fits in the current buffer and we are not on a switch
1793 * boundary. It's safe to write.
1794 */
1795 }
1796 offsets->end = offsets->begin + offsets->size;
f5ea5800
MD
1797
1798 if (unlikely(subbuf_offset(offsets->end, chan) == 0)) {
1799 /*
1800 * The offset_end will fall at the very beginning of the next
1801 * subbuffer.
1802 */
1803 offsets->switch_new_end = 1; /* For offsets->begin */
1804 }
f3bc08c5
MD
1805 return 0;
1806}
1807
1808/**
1809 * lib_ring_buffer_reserve_slow - Atomic slot reservation in a buffer.
1810 * @ctx: ring buffer context.
1811 *
97ca2c54
MD
1812 * Return : -NOBUFS if not enough space, -ENOSPC if event size too large,
1813 * -EIO for other errors, else returns 0.
f3bc08c5
MD
1814 * It will take care of sub-buffer switching.
1815 */
1816int lib_ring_buffer_reserve_slow(struct lib_ring_buffer_ctx *ctx)
1817{
1818 struct channel *chan = ctx->chan;
5a8fd222 1819 const struct lib_ring_buffer_config *config = &chan->backend.config;
f3bc08c5
MD
1820 struct lib_ring_buffer *buf;
1821 struct switch_offsets offsets;
c099397a 1822 int ret;
f3bc08c5
MD
1823
1824 if (config->alloc == RING_BUFFER_ALLOC_PER_CPU)
1825 buf = per_cpu_ptr(chan->backend.buf, ctx->cpu);
1826 else
1827 buf = chan->backend.buf;
1828 ctx->buf = buf;
1829
1830 offsets.size = 0;
1831
1832 do {
97ca2c54
MD
1833 ret = lib_ring_buffer_try_reserve_slow(buf, chan, &offsets,
1834 ctx);
1835 if (unlikely(ret))
1836 return ret;
f3bc08c5
MD
1837 } while (unlikely(v_cmpxchg(config, &buf->offset, offsets.old,
1838 offsets.end)
1839 != offsets.old));
1840
1841 /*
1842 * Atomically update last_tsc. This update races against concurrent
1843 * atomic updates, but the race will always cause supplementary full TSC
1844 * records, never the opposite (missing a full TSC record when it would
1845 * be needed).
1846 */
1847 save_last_tsc(config, buf, ctx->tsc);
1848
1849 /*
1850 * Push the reader if necessary
1851 */
1852 lib_ring_buffer_reserve_push_reader(buf, chan, offsets.end - 1);
1853
1854 /*
1855 * Clear noref flag for this subbuffer.
1856 */
1857 lib_ring_buffer_clear_noref(config, &buf->backend,
1858 subbuf_index(offsets.end - 1, chan));
1859
1860 /*
1861 * Switch old subbuffer if needed.
1862 */
1863 if (unlikely(offsets.switch_old_end)) {
1864 lib_ring_buffer_clear_noref(config, &buf->backend,
1865 subbuf_index(offsets.old - 1, chan));
1866 lib_ring_buffer_switch_old_end(buf, chan, &offsets, ctx->tsc);
1867 }
1868
1869 /*
1870 * Populate new subbuffer.
1871 */
1872 if (unlikely(offsets.switch_new_start))
1873 lib_ring_buffer_switch_new_start(buf, chan, &offsets, ctx->tsc);
1874
f5ea5800
MD
1875 if (unlikely(offsets.switch_new_end))
1876 lib_ring_buffer_switch_new_end(buf, chan, &offsets, ctx->tsc);
1877
f3bc08c5
MD
1878 ctx->slot_size = offsets.size;
1879 ctx->pre_offset = offsets.begin;
1880 ctx->buf_offset = offsets.begin + offsets.pre_header_padding;
1881 return 0;
1882}
1883EXPORT_SYMBOL_GPL(lib_ring_buffer_reserve_slow);
6fb8de4b 1884
02a766bb 1885int __init init_lib_ring_buffer_frontend(void)
6fb8de4b
MD
1886{
1887 int cpu;
1888
1889 for_each_possible_cpu(cpu)
1890 spin_lock_init(&per_cpu(ring_buffer_nohz_lock, cpu));
02a766bb 1891 return 0;
6fb8de4b 1892}
02a766bb
MD
1893
1894module_init(init_lib_ring_buffer_frontend);
1a5db82d
MD
1895
1896void __exit exit_lib_ring_buffer_frontend(void)
1897{
1898}
1899
1900module_exit(exit_lib_ring_buffer_frontend);
This page took 0.110752 seconds and 4 git commands to generate.