ring_buffer.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752
  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 <pzijlstr@redhat.com>
  7. * Copyright © 2009 Paul Mackerras, IBM Corp. <paulus@au1.ibm.com>
  8. *
  9. * For licensing details see kernel-base/COPYING
  10. */
  11. #include <linux/perf_event.h>
  12. #include <linux/vmalloc.h>
  13. #include <linux/slab.h>
  14. #include <linux/circ_buf.h>
  15. #include <linux/poll.h>
  16. #include "internal.h"
  17. static void perf_output_wakeup(struct perf_output_handle *handle)
  18. {
  19. atomic_set(&handle->rb->poll, POLLIN);
  20. handle->event->pending_wakeup = 1;
  21. irq_work_queue(&handle->event->pending);
  22. }
  23. /*
  24. * We need to ensure a later event_id doesn't publish a head when a former
  25. * event isn't done writing. However since we need to deal with NMIs we
  26. * cannot fully serialize things.
  27. *
  28. * We only publish the head (and generate a wakeup) when the outer-most
  29. * event completes.
  30. */
  31. static void perf_output_get_handle(struct perf_output_handle *handle)
  32. {
  33. struct ring_buffer *rb = handle->rb;
  34. preempt_disable();
  35. local_inc(&rb->nest);
  36. handle->wakeup = local_read(&rb->wakeup);
  37. }
  38. static void perf_output_put_handle(struct perf_output_handle *handle)
  39. {
  40. struct ring_buffer *rb = handle->rb;
  41. unsigned long head;
  42. again:
  43. head = local_read(&rb->head);
  44. /*
  45. * IRQ/NMI can happen here, which means we can miss a head update.
  46. */
  47. if (!local_dec_and_test(&rb->nest))
  48. goto out;
  49. /*
  50. * Since the mmap() consumer (userspace) can run on a different CPU:
  51. *
  52. * kernel user
  53. *
  54. * if (LOAD ->data_tail) { LOAD ->data_head
  55. * (A) smp_rmb() (C)
  56. * STORE $data LOAD $data
  57. * smp_wmb() (B) smp_mb() (D)
  58. * STORE ->data_head STORE ->data_tail
  59. * }
  60. *
  61. * Where A pairs with D, and B pairs with C.
  62. *
  63. * In our case (A) is a control dependency that separates the load of
  64. * the ->data_tail and the stores of $data. In case ->data_tail
  65. * indicates there is no room in the buffer to store $data we do not.
  66. *
  67. * D needs to be a full barrier since it separates the data READ
  68. * from the tail WRITE.
  69. *
  70. * For B a WMB is sufficient since it separates two WRITEs, and for C
  71. * an RMB is sufficient since it separates two READs.
  72. *
  73. * See perf_output_begin().
  74. */
  75. smp_wmb(); /* B, matches C */
  76. rb->user_page->data_head = head;
  77. /*
  78. * Now check if we missed an update -- rely on previous implied
  79. * compiler barriers to force a re-read.
  80. */
  81. if (unlikely(head != local_read(&rb->head))) {
  82. local_inc(&rb->nest);
  83. goto again;
  84. }
  85. if (handle->wakeup != local_read(&rb->wakeup))
  86. perf_output_wakeup(handle);
  87. out:
  88. preempt_enable();
  89. }
  90. int perf_output_begin(struct perf_output_handle *handle,
  91. struct perf_event *event, unsigned int size)
  92. {
  93. struct ring_buffer *rb;
  94. unsigned long tail, offset, head;
  95. int have_lost, page_shift;
  96. struct {
  97. struct perf_event_header header;
  98. u64 id;
  99. u64 lost;
  100. } lost_event;
  101. rcu_read_lock();
  102. /*
  103. * For inherited events we send all the output towards the parent.
  104. */
  105. if (event->parent)
  106. event = event->parent;
  107. rb = rcu_dereference(event->rb);
  108. if (unlikely(!rb))
  109. goto out;
  110. if (unlikely(!rb->nr_pages))
  111. goto out;
  112. handle->rb = rb;
  113. handle->event = event;
  114. have_lost = local_read(&rb->lost);
  115. if (unlikely(have_lost)) {
  116. size += sizeof(lost_event);
  117. if (event->attr.sample_id_all)
  118. size += event->id_header_size;
  119. }
  120. perf_output_get_handle(handle);
  121. do {
  122. tail = READ_ONCE_CTRL(rb->user_page->data_tail);
  123. offset = head = local_read(&rb->head);
  124. if (!rb->overwrite &&
  125. unlikely(CIRC_SPACE(head, tail, perf_data_size(rb)) < size))
  126. goto fail;
  127. /*
  128. * The above forms a control dependency barrier separating the
  129. * @tail load above from the data stores below. Since the @tail
  130. * load is required to compute the branch to fail below.
  131. *
  132. * A, matches D; the full memory barrier userspace SHOULD issue
  133. * after reading the data and before storing the new tail
  134. * position.
  135. *
  136. * See perf_output_put_handle().
  137. */
  138. head += size;
  139. } while (local_cmpxchg(&rb->head, offset, head) != offset);
  140. /*
  141. * We rely on the implied barrier() by local_cmpxchg() to ensure
  142. * none of the data stores below can be lifted up by the compiler.
  143. */
  144. if (unlikely(head - local_read(&rb->wakeup) > rb->watermark))
  145. local_add(rb->watermark, &rb->wakeup);
  146. page_shift = PAGE_SHIFT + page_order(rb);
  147. handle->page = (offset >> page_shift) & (rb->nr_pages - 1);
  148. offset &= (1UL << page_shift) - 1;
  149. handle->addr = rb->data_pages[handle->page] + offset;
  150. handle->size = (1UL << page_shift) - offset;
  151. if (unlikely(have_lost)) {
  152. struct perf_sample_data sample_data;
  153. lost_event.header.size = sizeof(lost_event);
  154. lost_event.header.type = PERF_RECORD_LOST;
  155. lost_event.header.misc = 0;
  156. lost_event.id = event->id;
  157. lost_event.lost = local_xchg(&rb->lost, 0);
  158. perf_event_header__init_id(&lost_event.header,
  159. &sample_data, event);
  160. perf_output_put(handle, lost_event);
  161. perf_event__output_id_sample(event, handle, &sample_data);
  162. }
  163. return 0;
  164. fail:
  165. local_inc(&rb->lost);
  166. perf_output_put_handle(handle);
  167. out:
  168. rcu_read_unlock();
  169. return -ENOSPC;
  170. }
  171. unsigned int perf_output_copy(struct perf_output_handle *handle,
  172. const void *buf, unsigned int len)
  173. {
  174. return __output_copy(handle, buf, len);
  175. }
  176. unsigned int perf_output_skip(struct perf_output_handle *handle,
  177. unsigned int len)
  178. {
  179. return __output_skip(handle, NULL, len);
  180. }
  181. void perf_output_end(struct perf_output_handle *handle)
  182. {
  183. perf_output_put_handle(handle);
  184. rcu_read_unlock();
  185. }
  186. static void
  187. ring_buffer_init(struct ring_buffer *rb, long watermark, int flags)
  188. {
  189. long max_size = perf_data_size(rb);
  190. if (watermark)
  191. rb->watermark = min(max_size, watermark);
  192. if (!rb->watermark)
  193. rb->watermark = max_size / 2;
  194. if (flags & RING_BUFFER_WRITABLE)
  195. rb->overwrite = 0;
  196. else
  197. rb->overwrite = 1;
  198. atomic_set(&rb->refcount, 1);
  199. INIT_LIST_HEAD(&rb->event_list);
  200. spin_lock_init(&rb->event_lock);
  201. }
  202. /*
  203. * This is called before hardware starts writing to the AUX area to
  204. * obtain an output handle and make sure there's room in the buffer.
  205. * When the capture completes, call perf_aux_output_end() to commit
  206. * the recorded data to the buffer.
  207. *
  208. * The ordering is similar to that of perf_output_{begin,end}, with
  209. * the exception of (B), which should be taken care of by the pmu
  210. * driver, since ordering rules will differ depending on hardware.
  211. */
  212. void *perf_aux_output_begin(struct perf_output_handle *handle,
  213. struct perf_event *event)
  214. {
  215. struct perf_event *output_event = event;
  216. unsigned long aux_head, aux_tail;
  217. struct ring_buffer *rb;
  218. if (output_event->parent)
  219. output_event = output_event->parent;
  220. /*
  221. * Since this will typically be open across pmu::add/pmu::del, we
  222. * grab ring_buffer's refcount instead of holding rcu read lock
  223. * to make sure it doesn't disappear under us.
  224. */
  225. rb = ring_buffer_get(output_event);
  226. if (!rb)
  227. return NULL;
  228. if (!rb_has_aux(rb) || !atomic_inc_not_zero(&rb->aux_refcount))
  229. goto err;
  230. /*
  231. * Nesting is not supported for AUX area, make sure nested
  232. * writers are caught early
  233. */
  234. if (WARN_ON_ONCE(local_xchg(&rb->aux_nest, 1)))
  235. goto err_put;
  236. aux_head = local_read(&rb->aux_head);
  237. handle->rb = rb;
  238. handle->event = event;
  239. handle->head = aux_head;
  240. handle->size = 0;
  241. /*
  242. * In overwrite mode, AUX data stores do not depend on aux_tail,
  243. * therefore (A) control dependency barrier does not exist. The
  244. * (B) <-> (C) ordering is still observed by the pmu driver.
  245. */
  246. if (!rb->aux_overwrite) {
  247. aux_tail = ACCESS_ONCE(rb->user_page->aux_tail);
  248. handle->wakeup = local_read(&rb->aux_wakeup) + rb->aux_watermark;
  249. if (aux_head - aux_tail < perf_aux_size(rb))
  250. handle->size = CIRC_SPACE(aux_head, aux_tail, perf_aux_size(rb));
  251. /*
  252. * handle->size computation depends on aux_tail load; this forms a
  253. * control dependency barrier separating aux_tail load from aux data
  254. * store that will be enabled on successful return
  255. */
  256. if (!handle->size) { /* A, matches D */
  257. event->pending_disable = 1;
  258. perf_output_wakeup(handle);
  259. local_set(&rb->aux_nest, 0);
  260. goto err_put;
  261. }
  262. }
  263. return handle->rb->aux_priv;
  264. err_put:
  265. rb_free_aux(rb);
  266. err:
  267. ring_buffer_put(rb);
  268. handle->event = NULL;
  269. return NULL;
  270. }
  271. /*
  272. * Commit the data written by hardware into the ring buffer by adjusting
  273. * aux_head and posting a PERF_RECORD_AUX into the perf buffer. It is the
  274. * pmu driver's responsibility to observe ordering rules of the hardware,
  275. * so that all the data is externally visible before this is called.
  276. */
  277. void perf_aux_output_end(struct perf_output_handle *handle, unsigned long size,
  278. bool truncated)
  279. {
  280. struct ring_buffer *rb = handle->rb;
  281. unsigned long aux_head;
  282. u64 flags = 0;
  283. if (truncated)
  284. flags |= PERF_AUX_FLAG_TRUNCATED;
  285. /* in overwrite mode, driver provides aux_head via handle */
  286. if (rb->aux_overwrite) {
  287. flags |= PERF_AUX_FLAG_OVERWRITE;
  288. aux_head = handle->head;
  289. local_set(&rb->aux_head, aux_head);
  290. } else {
  291. aux_head = local_read(&rb->aux_head);
  292. local_add(size, &rb->aux_head);
  293. }
  294. if (size || flags) {
  295. /*
  296. * Only send RECORD_AUX if we have something useful to communicate
  297. */
  298. perf_event_aux_event(handle->event, aux_head, size, flags);
  299. }
  300. aux_head = rb->user_page->aux_head = local_read(&rb->aux_head);
  301. if (aux_head - local_read(&rb->aux_wakeup) >= rb->aux_watermark) {
  302. perf_output_wakeup(handle);
  303. local_add(rb->aux_watermark, &rb->aux_wakeup);
  304. }
  305. handle->event = NULL;
  306. local_set(&rb->aux_nest, 0);
  307. rb_free_aux(rb);
  308. ring_buffer_put(rb);
  309. }
  310. /*
  311. * Skip over a given number of bytes in the AUX buffer, due to, for example,
  312. * hardware's alignment constraints.
  313. */
  314. int perf_aux_output_skip(struct perf_output_handle *handle, unsigned long size)
  315. {
  316. struct ring_buffer *rb = handle->rb;
  317. unsigned long aux_head;
  318. if (size > handle->size)
  319. return -ENOSPC;
  320. local_add(size, &rb->aux_head);
  321. aux_head = rb->user_page->aux_head = local_read(&rb->aux_head);
  322. if (aux_head - local_read(&rb->aux_wakeup) >= rb->aux_watermark) {
  323. perf_output_wakeup(handle);
  324. local_add(rb->aux_watermark, &rb->aux_wakeup);
  325. handle->wakeup = local_read(&rb->aux_wakeup) +
  326. rb->aux_watermark;
  327. }
  328. handle->head = aux_head;
  329. handle->size -= size;
  330. return 0;
  331. }
  332. void *perf_get_aux(struct perf_output_handle *handle)
  333. {
  334. /* this is only valid between perf_aux_output_begin and *_end */
  335. if (!handle->event)
  336. return NULL;
  337. return handle->rb->aux_priv;
  338. }
  339. #define PERF_AUX_GFP (GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_NORETRY)
  340. static struct page *rb_alloc_aux_page(int node, int order)
  341. {
  342. struct page *page;
  343. if (order > MAX_ORDER)
  344. order = MAX_ORDER;
  345. do {
  346. page = alloc_pages_node(node, PERF_AUX_GFP, order);
  347. } while (!page && order--);
  348. if (page && order) {
  349. /*
  350. * Communicate the allocation size to the driver
  351. */
  352. split_page(page, order);
  353. SetPagePrivate(page);
  354. set_page_private(page, order);
  355. }
  356. return page;
  357. }
  358. static void rb_free_aux_page(struct ring_buffer *rb, int idx)
  359. {
  360. struct page *page = virt_to_page(rb->aux_pages[idx]);
  361. ClearPagePrivate(page);
  362. page->mapping = NULL;
  363. __free_page(page);
  364. }
  365. int rb_alloc_aux(struct ring_buffer *rb, struct perf_event *event,
  366. pgoff_t pgoff, int nr_pages, long watermark, int flags)
  367. {
  368. bool overwrite = !(flags & RING_BUFFER_WRITABLE);
  369. int node = (event->cpu == -1) ? -1 : cpu_to_node(event->cpu);
  370. int ret = -ENOMEM, max_order = 0;
  371. if (!has_aux(event))
  372. return -ENOTSUPP;
  373. if (event->pmu->capabilities & PERF_PMU_CAP_AUX_NO_SG) {
  374. /*
  375. * We need to start with the max_order that fits in nr_pages,
  376. * not the other way around, hence ilog2() and not get_order.
  377. */
  378. max_order = ilog2(nr_pages);
  379. /*
  380. * PMU requests more than one contiguous chunks of memory
  381. * for SW double buffering
  382. */
  383. if ((event->pmu->capabilities & PERF_PMU_CAP_AUX_SW_DOUBLEBUF) &&
  384. !overwrite) {
  385. if (!max_order)
  386. return -EINVAL;
  387. max_order--;
  388. }
  389. }
  390. rb->aux_pages = kzalloc_node(nr_pages * sizeof(void *), GFP_KERNEL, node);
  391. if (!rb->aux_pages)
  392. return -ENOMEM;
  393. rb->free_aux = event->pmu->free_aux;
  394. for (rb->aux_nr_pages = 0; rb->aux_nr_pages < nr_pages;) {
  395. struct page *page;
  396. int last, order;
  397. order = min(max_order, ilog2(nr_pages - rb->aux_nr_pages));
  398. page = rb_alloc_aux_page(node, order);
  399. if (!page)
  400. goto out;
  401. for (last = rb->aux_nr_pages + (1 << page_private(page));
  402. last > rb->aux_nr_pages; rb->aux_nr_pages++)
  403. rb->aux_pages[rb->aux_nr_pages] = page_address(page++);
  404. }
  405. /*
  406. * In overwrite mode, PMUs that don't support SG may not handle more
  407. * than one contiguous allocation, since they rely on PMI to do double
  408. * buffering. In this case, the entire buffer has to be one contiguous
  409. * chunk.
  410. */
  411. if ((event->pmu->capabilities & PERF_PMU_CAP_AUX_NO_SG) &&
  412. overwrite) {
  413. struct page *page = virt_to_page(rb->aux_pages[0]);
  414. if (page_private(page) != max_order)
  415. goto out;
  416. }
  417. rb->aux_priv = event->pmu->setup_aux(event->cpu, rb->aux_pages, nr_pages,
  418. overwrite);
  419. if (!rb->aux_priv)
  420. goto out;
  421. ret = 0;
  422. /*
  423. * aux_pages (and pmu driver's private data, aux_priv) will be
  424. * referenced in both producer's and consumer's contexts, thus
  425. * we keep a refcount here to make sure either of the two can
  426. * reference them safely.
  427. */
  428. atomic_set(&rb->aux_refcount, 1);
  429. rb->aux_overwrite = overwrite;
  430. rb->aux_watermark = watermark;
  431. if (!rb->aux_watermark && !rb->aux_overwrite)
  432. rb->aux_watermark = nr_pages << (PAGE_SHIFT - 1);
  433. out:
  434. if (!ret)
  435. rb->aux_pgoff = pgoff;
  436. else
  437. rb_free_aux(rb);
  438. return ret;
  439. }
  440. static void __rb_free_aux(struct ring_buffer *rb)
  441. {
  442. int pg;
  443. if (rb->aux_priv) {
  444. rb->free_aux(rb->aux_priv);
  445. rb->free_aux = NULL;
  446. rb->aux_priv = NULL;
  447. }
  448. for (pg = 0; pg < rb->aux_nr_pages; pg++)
  449. rb_free_aux_page(rb, pg);
  450. kfree(rb->aux_pages);
  451. rb->aux_nr_pages = 0;
  452. }
  453. void rb_free_aux(struct ring_buffer *rb)
  454. {
  455. if (atomic_dec_and_test(&rb->aux_refcount))
  456. __rb_free_aux(rb);
  457. }
  458. #ifndef CONFIG_PERF_USE_VMALLOC
  459. /*
  460. * Back perf_mmap() with regular GFP_KERNEL-0 pages.
  461. */
  462. static struct page *
  463. __perf_mmap_to_page(struct ring_buffer *rb, unsigned long pgoff)
  464. {
  465. if (pgoff > rb->nr_pages)
  466. return NULL;
  467. if (pgoff == 0)
  468. return virt_to_page(rb->user_page);
  469. return virt_to_page(rb->data_pages[pgoff - 1]);
  470. }
  471. static void *perf_mmap_alloc_page(int cpu)
  472. {
  473. struct page *page;
  474. int node;
  475. node = (cpu == -1) ? cpu : cpu_to_node(cpu);
  476. page = alloc_pages_node(node, GFP_KERNEL | __GFP_ZERO, 0);
  477. if (!page)
  478. return NULL;
  479. return page_address(page);
  480. }
  481. struct ring_buffer *rb_alloc(int nr_pages, long watermark, int cpu, int flags)
  482. {
  483. struct ring_buffer *rb;
  484. unsigned long size;
  485. int i;
  486. size = sizeof(struct ring_buffer);
  487. size += nr_pages * sizeof(void *);
  488. rb = kzalloc(size, GFP_KERNEL);
  489. if (!rb)
  490. goto fail;
  491. rb->user_page = perf_mmap_alloc_page(cpu);
  492. if (!rb->user_page)
  493. goto fail_user_page;
  494. for (i = 0; i < nr_pages; i++) {
  495. rb->data_pages[i] = perf_mmap_alloc_page(cpu);
  496. if (!rb->data_pages[i])
  497. goto fail_data_pages;
  498. }
  499. rb->nr_pages = nr_pages;
  500. ring_buffer_init(rb, watermark, flags);
  501. return rb;
  502. fail_data_pages:
  503. for (i--; i >= 0; i--)
  504. free_page((unsigned long)rb->data_pages[i]);
  505. free_page((unsigned long)rb->user_page);
  506. fail_user_page:
  507. kfree(rb);
  508. fail:
  509. return NULL;
  510. }
  511. static void perf_mmap_free_page(unsigned long addr)
  512. {
  513. struct page *page = virt_to_page((void *)addr);
  514. page->mapping = NULL;
  515. __free_page(page);
  516. }
  517. void rb_free(struct ring_buffer *rb)
  518. {
  519. int i;
  520. perf_mmap_free_page((unsigned long)rb->user_page);
  521. for (i = 0; i < rb->nr_pages; i++)
  522. perf_mmap_free_page((unsigned long)rb->data_pages[i]);
  523. kfree(rb);
  524. }
  525. #else
  526. static int data_page_nr(struct ring_buffer *rb)
  527. {
  528. return rb->nr_pages << page_order(rb);
  529. }
  530. static struct page *
  531. __perf_mmap_to_page(struct ring_buffer *rb, unsigned long pgoff)
  532. {
  533. /* The '>' counts in the user page. */
  534. if (pgoff > data_page_nr(rb))
  535. return NULL;
  536. return vmalloc_to_page((void *)rb->user_page + pgoff * PAGE_SIZE);
  537. }
  538. static void perf_mmap_unmark_page(void *addr)
  539. {
  540. struct page *page = vmalloc_to_page(addr);
  541. page->mapping = NULL;
  542. }
  543. static void rb_free_work(struct work_struct *work)
  544. {
  545. struct ring_buffer *rb;
  546. void *base;
  547. int i, nr;
  548. rb = container_of(work, struct ring_buffer, work);
  549. nr = data_page_nr(rb);
  550. base = rb->user_page;
  551. /* The '<=' counts in the user page. */
  552. for (i = 0; i <= nr; i++)
  553. perf_mmap_unmark_page(base + (i * PAGE_SIZE));
  554. vfree(base);
  555. kfree(rb);
  556. }
  557. void rb_free(struct ring_buffer *rb)
  558. {
  559. schedule_work(&rb->work);
  560. }
  561. struct ring_buffer *rb_alloc(int nr_pages, long watermark, int cpu, int flags)
  562. {
  563. struct ring_buffer *rb;
  564. unsigned long size;
  565. void *all_buf;
  566. size = sizeof(struct ring_buffer);
  567. size += sizeof(void *);
  568. rb = kzalloc(size, GFP_KERNEL);
  569. if (!rb)
  570. goto fail;
  571. INIT_WORK(&rb->work, rb_free_work);
  572. all_buf = vmalloc_user((nr_pages + 1) * PAGE_SIZE);
  573. if (!all_buf)
  574. goto fail_all_buf;
  575. rb->user_page = all_buf;
  576. rb->data_pages[0] = all_buf + PAGE_SIZE;
  577. rb->page_order = ilog2(nr_pages);
  578. rb->nr_pages = !!nr_pages;
  579. ring_buffer_init(rb, watermark, flags);
  580. return rb;
  581. fail_all_buf:
  582. kfree(rb);
  583. fail:
  584. return NULL;
  585. }
  586. #endif
  587. struct page *
  588. perf_mmap_to_page(struct ring_buffer *rb, unsigned long pgoff)
  589. {
  590. if (rb->aux_nr_pages) {
  591. /* above AUX space */
  592. if (pgoff > rb->aux_pgoff + rb->aux_nr_pages)
  593. return NULL;
  594. /* AUX space */
  595. if (pgoff >= rb->aux_pgoff)
  596. return virt_to_page(rb->aux_pages[pgoff - rb->aux_pgoff]);
  597. }
  598. return __perf_mmap_to_page(rb, pgoff);
  599. }