| /linux/drivers/edac/ |
| H A D | amd76x_edac.c | 148 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()
|
| H A D | pasemi_edac.c | 102 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()
|
| H A D | aspeed_edac.c | 119 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()
|
| H A D | r82600_edac.c | 251 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()
|
| H A D | cpc925_edac.c | 340 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()
|
| H A D | i82443bxgx_edac.c | 217 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()
|
| H A D | i82860_edac.c | 173 csrow->first_page = last_cumul_size; in i82860_init_csrows()
|
| H A D | i3000_edac.c | 402 csrow->first_page = last_cumul_size; in i3000_probe1()
|
| H A D | i82875p_edac.c | 370 csrow->first_page = last_cumul_size; in i82875p_init_csrows()
|
| H A D | e7xxx_edac.c | 388 csrow->first_page = last_cumul_size; in e7xxx_init_csrows()
|
| H A D | i82975x_edac.c | 423 csrow->first_page = last_cumul_size; in i82975x_init_csrows()
|
| /linux/arch/sparc/kernel/ |
| H A D | iommu.c | 201 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()
|
| H A D | pci_sun4v.c | 186 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/drivers/platform/goldfish/ |
| H A D | goldfish_pipe.c | 256 static int goldfish_pin_pages(unsigned long first_page, in goldfish_pin_pages() argument 264 int requested_pages = ((last_page - first_page) >> PAGE_SHIFT) + 1; in goldfish_pin_pages() 273 ret = pin_user_pages_fast(first_page, requested_pages, in goldfish_pin_pages() 289 unsigned long first_page, in populate_rw_params() argument 303 int size_on_page = first_page == last_page in populate_rw_params() 333 unsigned long first_page = address & PAGE_MASK; in transfer_max_buffers() local 341 pages_count = goldfish_pin_pages(first_page, last_page, in transfer_max_buffers() 350 first_page, last_page, iter_last_page_size, is_write, in transfer_max_buffers()
|
| /linux/drivers/staging/media/meson/vdec/ |
| H A D | codec_hevc_common.c | 286 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/mm/ |
| H A D | memremap.c | 89 struct page *first_page; in pageunmap_range() local 92 first_page = pfn_to_page(pfn_first(pgmap, range_id)); in pageunmap_range() 96 remove_pfn_range_from_zone(page_zone(first_page), PHYS_PFN(range->start), in pageunmap_range()
|
| H A D | mprotect.c | 147 struct page *first_page, bool expected_anon_exclusive) in page_anon_exclusive_sub_batch() argument 152 if (expected_anon_exclusive != PageAnonExclusive(first_page + idx)) in page_anon_exclusive_sub_batch() 173 struct folio *folio, struct page *first_page, unsigned long addr, pte_t *ptep, in commit_anon_folio_batch() argument 181 expected_anon_exclusive = PageAnonExclusive(first_page + sub_batch_idx); in commit_anon_folio_batch() 183 first_page, expected_anon_exclusive); in commit_anon_folio_batch()
|
| /linux/sound/pci/trident/ |
| H A D | trident.h | 248 short first_page, last_page; member
|
| /linux/tools/testing/selftests/kvm/include/ |
| H A D | kvm_util.h | 464 uint64_t first_page, uint32_t num_pages) in kvm_vm_clear_dirty_log() argument 469 .first_page = first_page, in kvm_vm_clear_dirty_log()
|
| /linux/virt/kvm/ |
| H A D | kvm_main.c | 2375 if (log->first_page & 63) in kvm_clear_dirty_log_protect() 2387 if (log->first_page > memslot->npages || in kvm_clear_dirty_log_protect() 2388 log->num_pages > memslot->npages - log->first_page || in kvm_clear_dirty_log_protect() 2389 (log->num_pages < memslot->npages - log->first_page && (log->num_pages & 63))) in kvm_clear_dirty_log_protect() 2400 for (offset = log->first_page, i = offset / BITS_PER_LONG, in kvm_clear_dirty_log_protect() 5421 __u64 first_page; in kvm_vm_compat_ioctl() 5458 log.first_page = compat_log.first_page; in kvm_vm_compat_ioctl() 5406 __u64 first_page; global() member
|
| /linux/include/linux/ |
| H A D | edac.h | 434 unsigned long first_page; /* first page number in csrow */ member
|
| /linux/kernel/trace/ |
| H A D | ring_buffer.c | 2719 struct buffer_page *last_page, *first_page; in rb_remove_pages() local 2748 first_page = list_entry(rb_list_head(to_remove->next), in rb_remove_pages() 2788 tmp_iter_page = first_page; in rb_remove_pages() 2852 struct list_head *last_page, *first_page; in rb_insert_pages() local 2861 first_page = pages->next; in rb_insert_pages() 2868 first_page->prev = prev_page; in rb_insert_pages() 2872 &head_page_with_bit, first_page)) { in rb_insert_pages()
|
| /linux/drivers/md/dm-vdo/indexer/ |
| H A D | volume.c | 1053 u32 first_page = map_to_physical_page(volume->geometry, physical_chapter, 0); in uds_forget_chapter() local 1059 invalidate_page(&volume->page_cache, first_page + i); in uds_forget_chapter()
|
| /linux/drivers/scsi/csiostor/ |
| H A D | csio_hw.c | 674 uint8_t first_page[SF_PAGE_SIZE]; in csio_hw_fw_dload() local 731 memcpy(first_page, fw_data, SF_PAGE_SIZE); in csio_hw_fw_dload() 732 ((struct fw_hdr *)first_page)->fw_ver = htonl(0xffffffff); in csio_hw_fw_dload() 733 ret = csio_hw_write_flash(hw, FLASH_FW_START, SF_PAGE_SIZE, first_page); in csio_hw_fw_dload()
|
| /linux/tools/include/uapi/linux/ |
| H A D | kvm.h | 571 __u64 first_page; 562 __u64 first_page; global() member
|