Home
last modified time | relevance | path

Searched refs:first_page (Results 1 – 25 of 42) sorted by relevance

12

/linux-6.6.21/sound/pci/emu10k1/
Dmemory.c83 blk->first_page = get_aligned_page(blk->mem.offset); in emu10k1_memblk_init()
85 blk->pages = blk->last_page - blk->first_page + 1; in emu10k1_memblk_init()
152 for (pg = blk->first_page; pg <= blk->last_page; pg++) { in map_memblk()
192 for (pg = blk->first_page; pg <= blk->last_page; pg++) { in unmap_memblk()
216 if (page + psize <= blk->first_page) in search_empty()
328 for (page = blk->first_page; page <= blk->last_page; page++, idx++) { in snd_emu10k1_alloc_pages()
458 int first_page, last_page; in get_single_page_range() local
459 first_page = blk->first_page; in get_single_page_range()
463 if (q->last_page == first_page) in get_single_page_range()
464 first_page++; /* first page was already allocated */ in get_single_page_range()
[all …]
/linux-6.6.21/drivers/edac/
Dcell_edac.c53 csrow->first_page + pfn, offset, syndrome, in cell_edac_count_ce()
75 csrow->first_page + pfn, offset, 0, in cell_edac_count_ue()
148 csrow->first_page = r.start >> PAGE_SHIFT; in cell_edac_init_csrows()
150 csrow->last_page = csrow->first_page + nr_pages - 1; in cell_edac_init_csrows()
162 csrow->first_page, nr_pages); in cell_edac_init_csrows()
Damd76x_edac.c148 mci->csrows[row]->first_page, 0, 0, in amd76x_process_error_info()
163 mci->csrows[row]->first_page, 0, 0, in amd76x_process_error_info()
208 csrow->first_page = mba_base >> PAGE_SHIFT; in amd76x_init_csrows()
210 csrow->last_page = csrow->first_page + dimm->nr_pages - 1; in amd76x_init_csrows()
Dpasemi_edac.c102 mci->csrows[cs]->first_page, 0, 0, in pasemi_edac_process_error_info()
109 mci->csrows[cs]->first_page, 0, 0, in pasemi_edac_process_error_info()
167 csrow->first_page = last_page_in_mmc; in pasemi_edac_init_csrows()
168 csrow->last_page = csrow->first_page + dimm->nr_pages - 1; in pasemi_edac_init_csrows()
Daspeed_edac.c119 csrow->first_page + page, offset, syndrome, in count_rec()
140 csrow->first_page + page, offset, syndrome, in count_un_rec()
260 csrow->first_page = r.start >> PAGE_SHIFT; in init_csrows()
262 csrow->last_page = csrow->first_page + nr_pages - 1; in init_csrows()
273 csrow->first_page, nr_pages); in init_csrows()
Dr82600_edac.c251 csrow->first_page = row_base >> PAGE_SHIFT; in r82600_init_csrows()
254 dimm->nr_pages = csrow->last_page - csrow->first_page + 1; in r82600_init_csrows()
Di82443bxgx_edac.c217 csrow->first_page = row_base >> PAGE_SHIFT; in i82443bxgx_init_csrows()
219 dimm->nr_pages = csrow->last_page - csrow->first_page + 1; in i82443bxgx_init_csrows()
Dcpc925_edac.c340 csrow->first_page = last_nr_pages; in cpc925_init_csrows()
342 csrow->last_page = csrow->first_page + nr_pages - 1; in cpc925_init_csrows()
452 if (mci->csrows[rank]->first_page == 0) { in cpc925_mc_get_pfn()
460 pa = mci->csrows[rank]->first_page << PAGE_SHIFT; in cpc925_mc_get_pfn()
Dedac_mc.c112 edac_dbg(4, " csrow->first_page = 0x%lx\n", csrow->first_page); in edac_mc_dump_csrow()
773 csrow->first_page, page, csrow->last_page, in edac_mc_find_csrow_by_page()
776 if ((page >= csrow->first_page) && in edac_mc_find_csrow_by_page()
779 (csrow->first_page & csrow->page_mask))) { in edac_mc_find_csrow_by_page()
Dfsl_ddr_edac.c319 if ((pfn >= csrow->first_page) && (pfn <= csrow->last_page)) in fsl_mc_check()
460 csrow->first_page = start; in fsl_ddr_init_csrows()
Di82860_edac.c173 csrow->first_page = last_cumul_size; in i82860_init_csrows()
Di82875p_edac.c370 csrow->first_page = last_cumul_size; in i82875p_init_csrows()
/linux-6.6.21/arch/sparc/kernel/
Diommu.c201 unsigned long order, first_page; in dma_4u_alloc_coherent() local
218 first_page = (unsigned long) page_address(page); in dma_4u_alloc_coherent()
219 memset((char *)first_page, 0, PAGE_SIZE << order); in dma_4u_alloc_coherent()
226 free_pages(first_page, order); in dma_4u_alloc_coherent()
232 ret = (void *) first_page; in dma_4u_alloc_coherent()
234 first_page = __pa(first_page); in dma_4u_alloc_coherent()
238 (first_page & IOPTE_PAGE)); in dma_4u_alloc_coherent()
240 first_page += IO_PAGE_SIZE; in dma_4u_alloc_coherent()
Dpci_sun4v.c186 unsigned long flags, order, first_page, npages, n; in dma_4v_alloc_coherent() local
210 first_page = (unsigned long) page_address(page); in dma_4v_alloc_coherent()
211 memset((char *)first_page, 0, PAGE_SIZE << order); in dma_4v_alloc_coherent()
227 ret = (void *) first_page; in dma_4v_alloc_coherent()
228 first_page = __pa(first_page); in dma_4v_alloc_coherent()
238 long err = iommu_batch_add(first_page + (n * PAGE_SIZE), mask); in dma_4v_alloc_coherent()
255 free_pages(first_page, order); in dma_4v_alloc_coherent()
/linux-6.6.21/drivers/platform/goldfish/
Dgoldfish_pipe.c257 static int goldfish_pin_pages(unsigned long first_page, in goldfish_pin_pages() argument
265 int requested_pages = ((last_page - first_page) >> PAGE_SHIFT) + 1; in goldfish_pin_pages()
274 ret = pin_user_pages_fast(first_page, requested_pages, in goldfish_pin_pages()
290 unsigned long first_page, in populate_rw_params() argument
304 int size_on_page = first_page == last_page in populate_rw_params()
334 unsigned long first_page = address & PAGE_MASK; in transfer_max_buffers() local
342 pages_count = goldfish_pin_pages(first_page, last_page, in transfer_max_buffers()
351 first_page, last_page, iter_last_page_size, is_write, in transfer_max_buffers()
/linux-6.6.21/drivers/staging/media/meson/vdec/
Dcodec_hevc_common.c286 u32 first_page; in codec_hevc_fill_mmu_map() local
290 first_page = comm->fbc_buffer_paddr[vb->index] >> PAGE_SHIFT; in codec_hevc_fill_mmu_map()
292 first_page = vb2_dma_contig_plane_dma_addr(vb, 0) >> PAGE_SHIFT; in codec_hevc_fill_mmu_map()
295 mmu_map[i] = first_page + i; in codec_hevc_fill_mmu_map()
/linux-6.6.21/mm/
Dmemremap.c113 struct page *first_page; in pageunmap_range() local
116 first_page = pfn_to_page(pfn_first(pgmap, range_id)); in pageunmap_range()
120 remove_pfn_range_from_zone(page_zone(first_page), PHYS_PFN(range->start), in pageunmap_range()
Dzsmalloc.c254 struct page *first_page; member
453 struct page *first_page = zspage->first_page; in get_first_page() local
455 VM_BUG_ON_PAGE(!is_first_page(first_page), first_page); in get_first_page()
456 return first_page; in get_first_page()
965 zspage->first_page = page; in create_page_chain()
1339 zspage->first_page->index = handle; in obj_malloc()
/linux-6.6.21/fs/ntfs3/
Dfslog.c1014 u32 first_page; member
1071 return off >= log->l_size ? log->first_page : off; in next_page_off()
1302 log->first_page = major_ver >= 2 ? 0x22 * log->page_size : in log_init_pg_hdr()
1319 log->next_page = log->first_page; in log_create()
1358 log->total_avail_pages = log->l_size - log->first_page; in log_create()
1474 if (hdr_off == log->first_page) in next_log_lsn()
1515 log->first_page : in current_log_avail()
1525 log->next_page == log->first_page ? log->l_size : in current_log_avail()
1566 (lsn_seq == seq - 1 && log->first_page == vbo && in check_subseq_log_page()
1618 second_off = log->first_page - log->page_size; in last_log_lsn()
[all …]
/linux-6.6.21/tools/testing/selftests/kvm/include/
Dkvm_util_base.h357 uint64_t first_page, uint32_t num_pages) in kvm_vm_clear_dirty_log() argument
362 .first_page = first_page, in kvm_vm_clear_dirty_log()
/linux-6.6.21/fs/ext4/
Dinode.c1529 pgoff_t first_page; /* The first page to write */ member
1554 if (mpd->first_page >= mpd->next_page) in mpage_release_unused_pages()
1558 index = mpd->first_page; in mpage_release_unused_pages()
1582 if (folio->index < mpd->first_page) in mpage_release_unused_pages()
1847 mpd->first_page += folio_nr_pages(folio); in mpage_folio_done()
1857 BUG_ON(folio->index != mpd->first_page); in mpage_submit_folio()
2272 disksize = ((loff_t)mpd->first_page) << PAGE_SHIFT; in mpage_map_and_submit_extent()
2375 pgoff_t index = mpd->first_page; in mpage_prepare_extent_to_map()
2468 mpd->first_page = folio->index; in mpage_prepare_extent_to_map()
2613 mpd->first_page = writeback_index; in ext4_do_writepages()
[all …]
/linux-6.6.21/sound/pci/trident/
Dtrident.h248 short first_page, last_page; member
Dtrident_memory.c101 #define firstpg(blk) (((struct snd_trident_memblk_arg *)snd_util_memblk_argptr(blk))->first_page)
/linux-6.6.21/drivers/mtd/nand/raw/
Dnand_base.c255 int first_page, page_offset; in nand_block_bad() local
259 first_page = (int)(ofs >> chip->page_shift) & chip->pagemask; in nand_block_bad()
263 res = chip->ecc.read_oob(chip, first_page + page_offset); in nand_block_bad()
1218 first_lun = chip->cont_read.first_page / pages_per_lun; in rawnand_cap_cont_reads()
1282 if (page == chip->cont_read.first_page) in nand_lp_exec_cont_read_page_op()
1294 chip->cont_read.first_page = chip->cont_read.pause_page + 1; in nand_lp_exec_cont_read_page_op()
1305 return chip->cont_read.ongoing && page >= chip->cont_read.first_page; in rawnand_cont_read_ongoing()
3483 chip->cont_read.first_page = page; in rawnand_enable_cont_reads()
3492 if (!chip->cont_read.ongoing || page != chip->cont_read.first_page) in rawnand_cont_read_skip_first_page()
3495 chip->cont_read.first_page++; in rawnand_cont_read_skip_first_page()
[all …]
/linux-6.6.21/include/linux/
Dedac.h431 unsigned long first_page; /* first page number in csrow */ member

12