• Home
  • Raw
  • Download

Lines Matching refs:pages

449 	struct list_head		*pages;  member
1264 rb_list_head_clear(cpu_buffer->pages); in rb_head_page_deactivate()
1266 list_for_each(hd, cpu_buffer->pages) in rb_head_page_deactivate()
1339 list = cpu_buffer->pages; in rb_set_head_page()
1501 head = rb_list_head(cpu_buffer->pages); in rb_check_pages()
2031 long nr_pages, struct list_head *pages) in __rb_allocate_pages() argument
2087 list_add_tail(&bpage->list, pages); in __rb_allocate_pages()
2119 list_for_each_entry_safe(bpage, tmp, pages, list) { in __rb_allocate_pages()
2158 LIST_HEAD(pages); in rb_allocate_pages()
2162 if (__rb_allocate_pages(cpu_buffer, nr_pages, &pages)) in rb_allocate_pages()
2170 cpu_buffer->pages = pages.next; in rb_allocate_pages()
2171 list_del(&pages); in rb_allocate_pages()
2288 = list_entry(cpu_buffer->pages, struct buffer_page, list); in rb_allocate_cpu_buffer()
2312 struct list_head *head = cpu_buffer->pages; in rb_free_cpu_buffer()
2639 cpu_buffer->pages = next_page; in rb_remove_pages()
2651 RB_WARN_ON(cpu_buffer, list_empty(cpu_buffer->pages)); in rb_remove_pages()
2695 struct list_head *pages = &cpu_buffer->new_pages; in rb_insert_pages() local
2729 first_page = pages->next; in rb_insert_pages()
2730 last_page = pages->prev; in rb_insert_pages()
2754 INIT_LIST_HEAD(pages); in rb_insert_pages()
5385 cpu_buffer->pages = reader->list.prev; in __rb_get_reader_page()
6047 = list_entry(cpu_buffer->pages, struct buffer_page, list); in rb_reset_cpu()
6049 list_for_each_entry(page, cpu_buffer->pages, list) { in rb_reset_cpu()
6907 list_add(&old_pages, cpu_buffer->pages); in ring_buffer_subbuf_order_set()
6916 cpu_buffer->pages = cpu_buffer->new_pages.next; in ring_buffer_subbuf_order_set()
6921 = list_entry(cpu_buffer->pages, struct buffer_page, list); in ring_buffer_subbuf_order_set()
7108 struct page **pages; in __rb_map_vma() local
7145 pages = kcalloc(nr_pages, sizeof(*pages), GFP_KERNEL); in __rb_map_vma()
7146 if (!pages) in __rb_map_vma()
7152 pages[p++] = virt_to_page(cpu_buffer->meta_page); in __rb_map_vma()
7163 pages[p++] = ZERO_PAGE(zero_addr); in __rb_map_vma()
7187 pages[p++] = page; in __rb_map_vma()
7192 err = vm_insert_pages(vma, vma->vm_start, pages, &nr_pages); in __rb_map_vma()
7195 kfree(pages); in __rb_map_vma()