perf/ring_buffer: Prepare writing into the ring-buffer from the end
[platform/kernel/linux-rpi.git] / kernel / events / ring_buffer.c
1 /*
2  * Performance events ring-buffer code:
3  *
4  *  Copyright (C) 2008 Thomas Gleixner <tglx@linutronix.de>
5  *  Copyright (C) 2008-2011 Red Hat, Inc., Ingo Molnar
6  *  Copyright (C) 2008-2011 Red Hat, Inc., Peter Zijlstra
7  *  Copyright  ©  2009 Paul Mackerras, IBM Corp. <paulus@au1.ibm.com>
8  *
9  * For licensing details see kernel-base/COPYING
10  */
11
12 #include <linux/perf_event.h>
13 #include <linux/vmalloc.h>
14 #include <linux/slab.h>
15 #include <linux/circ_buf.h>
16 #include <linux/poll.h>
17
18 #include "internal.h"
19
20 static void perf_output_wakeup(struct perf_output_handle *handle)
21 {
22         atomic_set(&handle->rb->poll, POLLIN);
23
24         handle->event->pending_wakeup = 1;
25         irq_work_queue(&handle->event->pending);
26 }
27
28 /*
29  * We need to ensure a later event_id doesn't publish a head when a former
30  * event isn't done writing. However since we need to deal with NMIs we
31  * cannot fully serialize things.
32  *
33  * We only publish the head (and generate a wakeup) when the outer-most
34  * event completes.
35  */
36 static void perf_output_get_handle(struct perf_output_handle *handle)
37 {
38         struct ring_buffer *rb = handle->rb;
39
40         preempt_disable();
41         local_inc(&rb->nest);
42         handle->wakeup = local_read(&rb->wakeup);
43 }
44
45 static void perf_output_put_handle(struct perf_output_handle *handle)
46 {
47         struct ring_buffer *rb = handle->rb;
48         unsigned long head;
49
50 again:
51         head = local_read(&rb->head);
52
53         /*
54          * IRQ/NMI can happen here, which means we can miss a head update.
55          */
56
57         if (!local_dec_and_test(&rb->nest))
58                 goto out;
59
60         /*
61          * Since the mmap() consumer (userspace) can run on a different CPU:
62          *
63          *   kernel                             user
64          *
65          *   if (LOAD ->data_tail) {            LOAD ->data_head
66          *                      (A)             smp_rmb()       (C)
67          *      STORE $data                     LOAD $data
68          *      smp_wmb()       (B)             smp_mb()        (D)
69          *      STORE ->data_head               STORE ->data_tail
70          *   }
71          *
72          * Where A pairs with D, and B pairs with C.
73          *
74          * In our case (A) is a control dependency that separates the load of
75          * the ->data_tail and the stores of $data. In case ->data_tail
76          * indicates there is no room in the buffer to store $data we do not.
77          *
78          * D needs to be a full barrier since it separates the data READ
79          * from the tail WRITE.
80          *
81          * For B a WMB is sufficient since it separates two WRITEs, and for C
82          * an RMB is sufficient since it separates two READs.
83          *
84          * See perf_output_begin().
85          */
86         smp_wmb(); /* B, matches C */
87         rb->user_page->data_head = head;
88
89         /*
90          * Now check if we missed an update -- rely on previous implied
91          * compiler barriers to force a re-read.
92          */
93         if (unlikely(head != local_read(&rb->head))) {
94                 local_inc(&rb->nest);
95                 goto again;
96         }
97
98         if (handle->wakeup != local_read(&rb->wakeup))
99                 perf_output_wakeup(handle);
100
101 out:
102         preempt_enable();
103 }
104
105 static bool __always_inline
106 ring_buffer_has_space(unsigned long head, unsigned long tail,
107                       unsigned long data_size, unsigned int size,
108                       bool backward)
109 {
110         if (!backward)
111                 return CIRC_SPACE(head, tail, data_size) >= size;
112         else
113                 return CIRC_SPACE(tail, head, data_size) >= size;
114 }
115
116 static int __always_inline
117 __perf_output_begin(struct perf_output_handle *handle,
118                     struct perf_event *event, unsigned int size,
119                     bool backward)
120 {
121         struct ring_buffer *rb;
122         unsigned long tail, offset, head;
123         int have_lost, page_shift;
124         struct {
125                 struct perf_event_header header;
126                 u64                      id;
127                 u64                      lost;
128         } lost_event;
129
130         rcu_read_lock();
131         /*
132          * For inherited events we send all the output towards the parent.
133          */
134         if (event->parent)
135                 event = event->parent;
136
137         rb = rcu_dereference(event->rb);
138         if (unlikely(!rb))
139                 goto out;
140
141         if (unlikely(rb->paused)) {
142                 if (rb->nr_pages)
143                         local_inc(&rb->lost);
144                 goto out;
145         }
146
147         handle->rb    = rb;
148         handle->event = event;
149
150         have_lost = local_read(&rb->lost);
151         if (unlikely(have_lost)) {
152                 size += sizeof(lost_event);
153                 if (event->attr.sample_id_all)
154                         size += event->id_header_size;
155         }
156
157         perf_output_get_handle(handle);
158
159         do {
160                 tail = READ_ONCE(rb->user_page->data_tail);
161                 offset = head = local_read(&rb->head);
162                 if (!rb->overwrite) {
163                         if (unlikely(!ring_buffer_has_space(head, tail,
164                                                             perf_data_size(rb),
165                                                             size, backward)))
166                                 goto fail;
167                 }
168
169                 /*
170                  * The above forms a control dependency barrier separating the
171                  * @tail load above from the data stores below. Since the @tail
172                  * load is required to compute the branch to fail below.
173                  *
174                  * A, matches D; the full memory barrier userspace SHOULD issue
175                  * after reading the data and before storing the new tail
176                  * position.
177                  *
178                  * See perf_output_put_handle().
179                  */
180
181                 if (!backward)
182                         head += size;
183                 else
184                         head -= size;
185         } while (local_cmpxchg(&rb->head, offset, head) != offset);
186
187         if (backward) {
188                 offset = head;
189                 head = (u64)(-head);
190         }
191
192         /*
193          * We rely on the implied barrier() by local_cmpxchg() to ensure
194          * none of the data stores below can be lifted up by the compiler.
195          */
196
197         if (unlikely(head - local_read(&rb->wakeup) > rb->watermark))
198                 local_add(rb->watermark, &rb->wakeup);
199
200         page_shift = PAGE_SHIFT + page_order(rb);
201
202         handle->page = (offset >> page_shift) & (rb->nr_pages - 1);
203         offset &= (1UL << page_shift) - 1;
204         handle->addr = rb->data_pages[handle->page] + offset;
205         handle->size = (1UL << page_shift) - offset;
206
207         if (unlikely(have_lost)) {
208                 struct perf_sample_data sample_data;
209
210                 lost_event.header.size = sizeof(lost_event);
211                 lost_event.header.type = PERF_RECORD_LOST;
212                 lost_event.header.misc = 0;
213                 lost_event.id          = event->id;
214                 lost_event.lost        = local_xchg(&rb->lost, 0);
215
216                 perf_event_header__init_id(&lost_event.header,
217                                            &sample_data, event);
218                 perf_output_put(handle, lost_event);
219                 perf_event__output_id_sample(event, handle, &sample_data);
220         }
221
222         return 0;
223
224 fail:
225         local_inc(&rb->lost);
226         perf_output_put_handle(handle);
227 out:
228         rcu_read_unlock();
229
230         return -ENOSPC;
231 }
232
233 int perf_output_begin(struct perf_output_handle *handle,
234                       struct perf_event *event, unsigned int size)
235 {
236         return __perf_output_begin(handle, event, size, false);
237 }
238
239 unsigned int perf_output_copy(struct perf_output_handle *handle,
240                       const void *buf, unsigned int len)
241 {
242         return __output_copy(handle, buf, len);
243 }
244
245 unsigned int perf_output_skip(struct perf_output_handle *handle,
246                               unsigned int len)
247 {
248         return __output_skip(handle, NULL, len);
249 }
250
251 void perf_output_end(struct perf_output_handle *handle)
252 {
253         perf_output_put_handle(handle);
254         rcu_read_unlock();
255 }
256
257 static void
258 ring_buffer_init(struct ring_buffer *rb, long watermark, int flags)
259 {
260         long max_size = perf_data_size(rb);
261
262         if (watermark)
263                 rb->watermark = min(max_size, watermark);
264
265         if (!rb->watermark)
266                 rb->watermark = max_size / 2;
267
268         if (flags & RING_BUFFER_WRITABLE)
269                 rb->overwrite = 0;
270         else
271                 rb->overwrite = 1;
272
273         atomic_set(&rb->refcount, 1);
274
275         INIT_LIST_HEAD(&rb->event_list);
276         spin_lock_init(&rb->event_lock);
277
278         /*
279          * perf_output_begin() only checks rb->paused, therefore
280          * rb->paused must be true if we have no pages for output.
281          */
282         if (!rb->nr_pages)
283                 rb->paused = 1;
284 }
285
286 /*
287  * This is called before hardware starts writing to the AUX area to
288  * obtain an output handle and make sure there's room in the buffer.
289  * When the capture completes, call perf_aux_output_end() to commit
290  * the recorded data to the buffer.
291  *
292  * The ordering is similar to that of perf_output_{begin,end}, with
293  * the exception of (B), which should be taken care of by the pmu
294  * driver, since ordering rules will differ depending on hardware.
295  *
296  * Call this from pmu::start(); see the comment in perf_aux_output_end()
297  * about its use in pmu callbacks. Both can also be called from the PMI
298  * handler if needed.
299  */
300 void *perf_aux_output_begin(struct perf_output_handle *handle,
301                             struct perf_event *event)
302 {
303         struct perf_event *output_event = event;
304         unsigned long aux_head, aux_tail;
305         struct ring_buffer *rb;
306
307         if (output_event->parent)
308                 output_event = output_event->parent;
309
310         /*
311          * Since this will typically be open across pmu::add/pmu::del, we
312          * grab ring_buffer's refcount instead of holding rcu read lock
313          * to make sure it doesn't disappear under us.
314          */
315         rb = ring_buffer_get(output_event);
316         if (!rb)
317                 return NULL;
318
319         if (!rb_has_aux(rb) || !atomic_inc_not_zero(&rb->aux_refcount))
320                 goto err;
321
322         /*
323          * If rb::aux_mmap_count is zero (and rb_has_aux() above went through),
324          * the aux buffer is in perf_mmap_close(), about to get freed.
325          */
326         if (!atomic_read(&rb->aux_mmap_count))
327                 goto err_put;
328
329         /*
330          * Nesting is not supported for AUX area, make sure nested
331          * writers are caught early
332          */
333         if (WARN_ON_ONCE(local_xchg(&rb->aux_nest, 1)))
334                 goto err_put;
335
336         aux_head = local_read(&rb->aux_head);
337
338         handle->rb = rb;
339         handle->event = event;
340         handle->head = aux_head;
341         handle->size = 0;
342
343         /*
344          * In overwrite mode, AUX data stores do not depend on aux_tail,
345          * therefore (A) control dependency barrier does not exist. The
346          * (B) <-> (C) ordering is still observed by the pmu driver.
347          */
348         if (!rb->aux_overwrite) {
349                 aux_tail = ACCESS_ONCE(rb->user_page->aux_tail);
350                 handle->wakeup = local_read(&rb->aux_wakeup) + rb->aux_watermark;
351                 if (aux_head - aux_tail < perf_aux_size(rb))
352                         handle->size = CIRC_SPACE(aux_head, aux_tail, perf_aux_size(rb));
353
354                 /*
355                  * handle->size computation depends on aux_tail load; this forms a
356                  * control dependency barrier separating aux_tail load from aux data
357                  * store that will be enabled on successful return
358                  */
359                 if (!handle->size) { /* A, matches D */
360                         event->pending_disable = 1;
361                         perf_output_wakeup(handle);
362                         local_set(&rb->aux_nest, 0);
363                         goto err_put;
364                 }
365         }
366
367         return handle->rb->aux_priv;
368
369 err_put:
370         /* can't be last */
371         rb_free_aux(rb);
372
373 err:
374         ring_buffer_put(rb);
375         handle->event = NULL;
376
377         return NULL;
378 }
379
380 /*
381  * Commit the data written by hardware into the ring buffer by adjusting
382  * aux_head and posting a PERF_RECORD_AUX into the perf buffer. It is the
383  * pmu driver's responsibility to observe ordering rules of the hardware,
384  * so that all the data is externally visible before this is called.
385  *
386  * Note: this has to be called from pmu::stop() callback, as the assumption
387  * of the AUX buffer management code is that after pmu::stop(), the AUX
388  * transaction must be stopped and therefore drop the AUX reference count.
389  */
390 void perf_aux_output_end(struct perf_output_handle *handle, unsigned long size,
391                          bool truncated)
392 {
393         struct ring_buffer *rb = handle->rb;
394         unsigned long aux_head;
395         u64 flags = 0;
396
397         if (truncated)
398                 flags |= PERF_AUX_FLAG_TRUNCATED;
399
400         /* in overwrite mode, driver provides aux_head via handle */
401         if (rb->aux_overwrite) {
402                 flags |= PERF_AUX_FLAG_OVERWRITE;
403
404                 aux_head = handle->head;
405                 local_set(&rb->aux_head, aux_head);
406         } else {
407                 aux_head = local_read(&rb->aux_head);
408                 local_add(size, &rb->aux_head);
409         }
410
411         if (size || flags) {
412                 /*
413                  * Only send RECORD_AUX if we have something useful to communicate
414                  */
415
416                 perf_event_aux_event(handle->event, aux_head, size, flags);
417         }
418
419         aux_head = rb->user_page->aux_head = local_read(&rb->aux_head);
420
421         if (aux_head - local_read(&rb->aux_wakeup) >= rb->aux_watermark) {
422                 perf_output_wakeup(handle);
423                 local_add(rb->aux_watermark, &rb->aux_wakeup);
424         }
425         handle->event = NULL;
426
427         local_set(&rb->aux_nest, 0);
428         /* can't be last */
429         rb_free_aux(rb);
430         ring_buffer_put(rb);
431 }
432
433 /*
434  * Skip over a given number of bytes in the AUX buffer, due to, for example,
435  * hardware's alignment constraints.
436  */
437 int perf_aux_output_skip(struct perf_output_handle *handle, unsigned long size)
438 {
439         struct ring_buffer *rb = handle->rb;
440         unsigned long aux_head;
441
442         if (size > handle->size)
443                 return -ENOSPC;
444
445         local_add(size, &rb->aux_head);
446
447         aux_head = rb->user_page->aux_head = local_read(&rb->aux_head);
448         if (aux_head - local_read(&rb->aux_wakeup) >= rb->aux_watermark) {
449                 perf_output_wakeup(handle);
450                 local_add(rb->aux_watermark, &rb->aux_wakeup);
451                 handle->wakeup = local_read(&rb->aux_wakeup) +
452                                  rb->aux_watermark;
453         }
454
455         handle->head = aux_head;
456         handle->size -= size;
457
458         return 0;
459 }
460
461 void *perf_get_aux(struct perf_output_handle *handle)
462 {
463         /* this is only valid between perf_aux_output_begin and *_end */
464         if (!handle->event)
465                 return NULL;
466
467         return handle->rb->aux_priv;
468 }
469
470 #define PERF_AUX_GFP    (GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_NORETRY)
471
472 static struct page *rb_alloc_aux_page(int node, int order)
473 {
474         struct page *page;
475
476         if (order > MAX_ORDER)
477                 order = MAX_ORDER;
478
479         do {
480                 page = alloc_pages_node(node, PERF_AUX_GFP, order);
481         } while (!page && order--);
482
483         if (page && order) {
484                 /*
485                  * Communicate the allocation size to the driver:
486                  * if we managed to secure a high-order allocation,
487                  * set its first page's private to this order;
488                  * !PagePrivate(page) means it's just a normal page.
489                  */
490                 split_page(page, order);
491                 SetPagePrivate(page);
492                 set_page_private(page, order);
493         }
494
495         return page;
496 }
497
498 static void rb_free_aux_page(struct ring_buffer *rb, int idx)
499 {
500         struct page *page = virt_to_page(rb->aux_pages[idx]);
501
502         ClearPagePrivate(page);
503         page->mapping = NULL;
504         __free_page(page);
505 }
506
507 static void __rb_free_aux(struct ring_buffer *rb)
508 {
509         int pg;
510
511         /*
512          * Should never happen, the last reference should be dropped from
513          * perf_mmap_close() path, which first stops aux transactions (which
514          * in turn are the atomic holders of aux_refcount) and then does the
515          * last rb_free_aux().
516          */
517         WARN_ON_ONCE(in_atomic());
518
519         if (rb->aux_priv) {
520                 rb->free_aux(rb->aux_priv);
521                 rb->free_aux = NULL;
522                 rb->aux_priv = NULL;
523         }
524
525         if (rb->aux_nr_pages) {
526                 for (pg = 0; pg < rb->aux_nr_pages; pg++)
527                         rb_free_aux_page(rb, pg);
528
529                 kfree(rb->aux_pages);
530                 rb->aux_nr_pages = 0;
531         }
532 }
533
534 int rb_alloc_aux(struct ring_buffer *rb, struct perf_event *event,
535                  pgoff_t pgoff, int nr_pages, long watermark, int flags)
536 {
537         bool overwrite = !(flags & RING_BUFFER_WRITABLE);
538         int node = (event->cpu == -1) ? -1 : cpu_to_node(event->cpu);
539         int ret = -ENOMEM, max_order = 0;
540
541         if (!has_aux(event))
542                 return -ENOTSUPP;
543
544         if (event->pmu->capabilities & PERF_PMU_CAP_AUX_NO_SG) {
545                 /*
546                  * We need to start with the max_order that fits in nr_pages,
547                  * not the other way around, hence ilog2() and not get_order.
548                  */
549                 max_order = ilog2(nr_pages);
550
551                 /*
552                  * PMU requests more than one contiguous chunks of memory
553                  * for SW double buffering
554                  */
555                 if ((event->pmu->capabilities & PERF_PMU_CAP_AUX_SW_DOUBLEBUF) &&
556                     !overwrite) {
557                         if (!max_order)
558                                 return -EINVAL;
559
560                         max_order--;
561                 }
562         }
563
564         rb->aux_pages = kzalloc_node(nr_pages * sizeof(void *), GFP_KERNEL, node);
565         if (!rb->aux_pages)
566                 return -ENOMEM;
567
568         rb->free_aux = event->pmu->free_aux;
569         for (rb->aux_nr_pages = 0; rb->aux_nr_pages < nr_pages;) {
570                 struct page *page;
571                 int last, order;
572
573                 order = min(max_order, ilog2(nr_pages - rb->aux_nr_pages));
574                 page = rb_alloc_aux_page(node, order);
575                 if (!page)
576                         goto out;
577
578                 for (last = rb->aux_nr_pages + (1 << page_private(page));
579                      last > rb->aux_nr_pages; rb->aux_nr_pages++)
580                         rb->aux_pages[rb->aux_nr_pages] = page_address(page++);
581         }
582
583         /*
584          * In overwrite mode, PMUs that don't support SG may not handle more
585          * than one contiguous allocation, since they rely on PMI to do double
586          * buffering. In this case, the entire buffer has to be one contiguous
587          * chunk.
588          */
589         if ((event->pmu->capabilities & PERF_PMU_CAP_AUX_NO_SG) &&
590             overwrite) {
591                 struct page *page = virt_to_page(rb->aux_pages[0]);
592
593                 if (page_private(page) != max_order)
594                         goto out;
595         }
596
597         rb->aux_priv = event->pmu->setup_aux(event->cpu, rb->aux_pages, nr_pages,
598                                              overwrite);
599         if (!rb->aux_priv)
600                 goto out;
601
602         ret = 0;
603
604         /*
605          * aux_pages (and pmu driver's private data, aux_priv) will be
606          * referenced in both producer's and consumer's contexts, thus
607          * we keep a refcount here to make sure either of the two can
608          * reference them safely.
609          */
610         atomic_set(&rb->aux_refcount, 1);
611
612         rb->aux_overwrite = overwrite;
613         rb->aux_watermark = watermark;
614
615         if (!rb->aux_watermark && !rb->aux_overwrite)
616                 rb->aux_watermark = nr_pages << (PAGE_SHIFT - 1);
617
618 out:
619         if (!ret)
620                 rb->aux_pgoff = pgoff;
621         else
622                 __rb_free_aux(rb);
623
624         return ret;
625 }
626
627 void rb_free_aux(struct ring_buffer *rb)
628 {
629         if (atomic_dec_and_test(&rb->aux_refcount))
630                 __rb_free_aux(rb);
631 }
632
633 #ifndef CONFIG_PERF_USE_VMALLOC
634
635 /*
636  * Back perf_mmap() with regular GFP_KERNEL-0 pages.
637  */
638
639 static struct page *
640 __perf_mmap_to_page(struct ring_buffer *rb, unsigned long pgoff)
641 {
642         if (pgoff > rb->nr_pages)
643                 return NULL;
644
645         if (pgoff == 0)
646                 return virt_to_page(rb->user_page);
647
648         return virt_to_page(rb->data_pages[pgoff - 1]);
649 }
650
651 static void *perf_mmap_alloc_page(int cpu)
652 {
653         struct page *page;
654         int node;
655
656         node = (cpu == -1) ? cpu : cpu_to_node(cpu);
657         page = alloc_pages_node(node, GFP_KERNEL | __GFP_ZERO, 0);
658         if (!page)
659                 return NULL;
660
661         return page_address(page);
662 }
663
664 struct ring_buffer *rb_alloc(int nr_pages, long watermark, int cpu, int flags)
665 {
666         struct ring_buffer *rb;
667         unsigned long size;
668         int i;
669
670         size = sizeof(struct ring_buffer);
671         size += nr_pages * sizeof(void *);
672
673         rb = kzalloc(size, GFP_KERNEL);
674         if (!rb)
675                 goto fail;
676
677         rb->user_page = perf_mmap_alloc_page(cpu);
678         if (!rb->user_page)
679                 goto fail_user_page;
680
681         for (i = 0; i < nr_pages; i++) {
682                 rb->data_pages[i] = perf_mmap_alloc_page(cpu);
683                 if (!rb->data_pages[i])
684                         goto fail_data_pages;
685         }
686
687         rb->nr_pages = nr_pages;
688
689         ring_buffer_init(rb, watermark, flags);
690
691         return rb;
692
693 fail_data_pages:
694         for (i--; i >= 0; i--)
695                 free_page((unsigned long)rb->data_pages[i]);
696
697         free_page((unsigned long)rb->user_page);
698
699 fail_user_page:
700         kfree(rb);
701
702 fail:
703         return NULL;
704 }
705
706 static void perf_mmap_free_page(unsigned long addr)
707 {
708         struct page *page = virt_to_page((void *)addr);
709
710         page->mapping = NULL;
711         __free_page(page);
712 }
713
714 void rb_free(struct ring_buffer *rb)
715 {
716         int i;
717
718         perf_mmap_free_page((unsigned long)rb->user_page);
719         for (i = 0; i < rb->nr_pages; i++)
720                 perf_mmap_free_page((unsigned long)rb->data_pages[i]);
721         kfree(rb);
722 }
723
724 #else
725 static int data_page_nr(struct ring_buffer *rb)
726 {
727         return rb->nr_pages << page_order(rb);
728 }
729
730 static struct page *
731 __perf_mmap_to_page(struct ring_buffer *rb, unsigned long pgoff)
732 {
733         /* The '>' counts in the user page. */
734         if (pgoff > data_page_nr(rb))
735                 return NULL;
736
737         return vmalloc_to_page((void *)rb->user_page + pgoff * PAGE_SIZE);
738 }
739
740 static void perf_mmap_unmark_page(void *addr)
741 {
742         struct page *page = vmalloc_to_page(addr);
743
744         page->mapping = NULL;
745 }
746
747 static void rb_free_work(struct work_struct *work)
748 {
749         struct ring_buffer *rb;
750         void *base;
751         int i, nr;
752
753         rb = container_of(work, struct ring_buffer, work);
754         nr = data_page_nr(rb);
755
756         base = rb->user_page;
757         /* The '<=' counts in the user page. */
758         for (i = 0; i <= nr; i++)
759                 perf_mmap_unmark_page(base + (i * PAGE_SIZE));
760
761         vfree(base);
762         kfree(rb);
763 }
764
765 void rb_free(struct ring_buffer *rb)
766 {
767         schedule_work(&rb->work);
768 }
769
770 struct ring_buffer *rb_alloc(int nr_pages, long watermark, int cpu, int flags)
771 {
772         struct ring_buffer *rb;
773         unsigned long size;
774         void *all_buf;
775
776         size = sizeof(struct ring_buffer);
777         size += sizeof(void *);
778
779         rb = kzalloc(size, GFP_KERNEL);
780         if (!rb)
781                 goto fail;
782
783         INIT_WORK(&rb->work, rb_free_work);
784
785         all_buf = vmalloc_user((nr_pages + 1) * PAGE_SIZE);
786         if (!all_buf)
787                 goto fail_all_buf;
788
789         rb->user_page = all_buf;
790         rb->data_pages[0] = all_buf + PAGE_SIZE;
791         if (nr_pages) {
792                 rb->nr_pages = 1;
793                 rb->page_order = ilog2(nr_pages);
794         }
795
796         ring_buffer_init(rb, watermark, flags);
797
798         return rb;
799
800 fail_all_buf:
801         kfree(rb);
802
803 fail:
804         return NULL;
805 }
806
807 #endif
808
809 struct page *
810 perf_mmap_to_page(struct ring_buffer *rb, unsigned long pgoff)
811 {
812         if (rb->aux_nr_pages) {
813                 /* above AUX space */
814                 if (pgoff > rb->aux_pgoff + rb->aux_nr_pages)
815                         return NULL;
816
817                 /* AUX space */
818                 if (pgoff >= rb->aux_pgoff)
819                         return virt_to_page(rb->aux_pages[pgoff - rb->aux_pgoff]);
820         }
821
822         return __perf_mmap_to_page(rb, pgoff);
823 }