Home
last modified time | relevance | path

Searched refs:new_pages (Results 1 – 9 of 9) sorted by relevance

/openbmc/linux/kernel/module/
H A Ddecompress.c19 struct page **new_pages; in module_extend_max_pages() local
21 new_pages = kvmalloc_array(info->max_pages + extent, in module_extend_max_pages()
23 if (!new_pages) in module_extend_max_pages()
26 memcpy(new_pages, info->pages, info->max_pages * sizeof(info->pages)); in module_extend_max_pages()
28 info->pages = new_pages; in module_extend_max_pages()
/openbmc/linux/drivers/block/drbd/
H A Ddrbd_bitmap.c381 struct page **new_pages, *page; in bm_realloc_pages() local
397 new_pages = kzalloc(bytes, GFP_NOIO | __GFP_NOWARN); in bm_realloc_pages()
398 if (!new_pages) { in bm_realloc_pages()
399 new_pages = __vmalloc(bytes, GFP_NOIO | __GFP_ZERO); in bm_realloc_pages()
400 if (!new_pages) in bm_realloc_pages()
406 new_pages[i] = old_pages[i]; in bm_realloc_pages()
410 bm_free_pages(new_pages + have, i - have); in bm_realloc_pages()
411 bm_vk_free(new_pages); in bm_realloc_pages()
417 new_pages[i] = page; in bm_realloc_pages()
421 new_pages[i] = old_pages[i]; in bm_realloc_pages()
[all …]
/openbmc/linux/arch/s390/kvm/
H A Dpci.c207 unsigned long page_limit, cur_pages, new_pages; in account_mem() local
213 new_pages = cur_pages + nr_pages; in account_mem()
214 if (new_pages > page_limit) in account_mem()
217 new_pages) != cur_pages); in account_mem()
/openbmc/linux/drivers/base/firmware_loader/
H A Dmain.c263 struct page **new_pages; in fw_grow_paged_buf() local
265 new_pages = kvmalloc_array(new_array_size, sizeof(void *), in fw_grow_paged_buf()
267 if (!new_pages) in fw_grow_paged_buf()
269 memcpy(new_pages, fw_priv->pages, in fw_grow_paged_buf()
271 memset(&new_pages[fw_priv->page_array_size], 0, sizeof(void *) * in fw_grow_paged_buf()
274 fw_priv->pages = new_pages; in fw_grow_paged_buf()
/openbmc/linux/drivers/virtio/
H A Dvirtio_mem.c398 int new_pages = PFN_UP(new_bytes); in virtio_mem_bbm_bb_states_prepare_next_bb() local
401 if (vm->bbm.bb_states && old_pages == new_pages) in virtio_mem_bbm_bb_states_prepare_next_bb()
404 new_array = vzalloc(new_pages * PAGE_SIZE); in virtio_mem_bbm_bb_states_prepare_next_bb()
464 int new_pages = PFN_UP(vm->sbm.next_mb_id - vm->sbm.first_mb_id + 1); in virtio_mem_sbm_mb_states_prepare_next_mb() local
467 if (vm->sbm.mb_states && old_pages == new_pages) in virtio_mem_sbm_mb_states_prepare_next_mb()
470 new_array = vzalloc(new_pages * PAGE_SIZE); in virtio_mem_sbm_mb_states_prepare_next_mb()
587 int new_pages = PFN_UP(BITS_TO_LONGS(new_nb_bits) * sizeof(long)); in virtio_mem_sbm_sb_states_prepare_next_mb() local
590 if (vm->sbm.sb_states && old_pages == new_pages) in virtio_mem_sbm_sb_states_prepare_next_mb()
593 new_bitmap = vzalloc(new_pages * PAGE_SIZE); in virtio_mem_sbm_sb_states_prepare_next_mb()
/openbmc/linux/io_uring/
H A Drsrc.c43 unsigned long page_limit, cur_pages, new_pages; in __io_account_mem() local
53 new_pages = cur_pages + nr_pages; in __io_account_mem()
54 if (new_pages > page_limit) in __io_account_mem()
57 &cur_pages, new_pages)); in __io_account_mem()
/openbmc/linux/kernel/trace/
H A Dring_buffer.c534 struct list_head new_pages; /* new pages to add */ member
1763 INIT_LIST_HEAD(&cpu_buffer->new_pages); in rb_allocate_cpu_buffer()
2052 struct list_head *pages = &cpu_buffer->new_pages; in rb_insert_pages()
2121 list_for_each_entry_safe(bpage, tmp, &cpu_buffer->new_pages, in rb_insert_pages()
2219 INIT_LIST_HEAD(&cpu_buffer->new_pages); in ring_buffer_resize()
2221 &cpu_buffer->new_pages)) { in ring_buffer_resize()
2290 INIT_LIST_HEAD(&cpu_buffer->new_pages); in ring_buffer_resize()
2293 &cpu_buffer->new_pages)) { in ring_buffer_resize()
2360 if (list_empty(&cpu_buffer->new_pages)) in ring_buffer_resize()
2363 list_for_each_entry_safe(bpage, tmp, &cpu_buffer->new_pages, in ring_buffer_resize()
[all …]
/openbmc/linux/arch/s390/kernel/
H A Ddebug.c1310 int rc, new_pages; in debug_input_pages_fn() local
1324 new_pages = debug_get_uint(str); in debug_input_pages_fn()
1325 if (new_pages < 0) { in debug_input_pages_fn()
1329 rc = debug_set_size(id, id->nr_areas, new_pages); in debug_input_pages_fn()
/openbmc/linux/drivers/iommu/iommufd/
H A Dpages.c808 unsigned long new_pages; in incr_user_locked_vm() local
814 new_pages = cur_pages + npages; in incr_user_locked_vm()
815 if (new_pages > lock_limit) in incr_user_locked_vm()
818 new_pages) != cur_pages); in incr_user_locked_vm()