Searched refs:first_page (Results 1 - 25 of 31) sorted by relevance

12

/drivers/staging/zsmalloc/
H A Dzsmalloc-main.c216 return page->first_page;
280 static void free_zspage(struct page *first_page) argument
284 BUG_ON(!is_first_page(first_page));
285 BUG_ON(first_page->inuse);
287 head_extra = (struct page *)page_private(first_page);
289 reset_page(first_page);
290 __free_page(first_page);
306 static void init_zspage(struct page *first_page, struct size_class *class) argument
309 struct page *page = first_page;
311 BUG_ON(!is_first_page(first_page));
357 struct page *first_page = NULL; local
586 struct page *first_page, *m_page; local
632 struct page *first_page, *f_page; local
[all...]
/drivers/edac/
H A Dcell_edac.c51 edac_mc_handle_ce(mci, csrow->first_page + pfn, offset,
72 edac_mc_handle_ue(mci, csrow->first_page + pfn, offset, 0, "");
142 csrow->first_page = r.start >> PAGE_SHIFT;
144 csrow->last_page = csrow->first_page + csrow->nr_pages - 1;
149 " first_page=0x%lx, nr_pages=0x%x\n",
151 csrow->first_page, csrow->nr_pages);
H A Damd76x_edac.c149 edac_mc_handle_ue(mci, mci->csrows[row].first_page, 0,
162 edac_mc_handle_ce(mci, mci->csrows[row].first_page, 0,
205 csrow->first_page = mba_base >> PAGE_SHIFT;
207 csrow->last_page = csrow->first_page + csrow->nr_pages - 1;
H A Dpasemi_edac.c113 edac_mc_handle_ue(mci, mci->csrows[cs].first_page, 0,
119 edac_mc_handle_ce(mci, mci->csrows[cs].first_page, 0,
176 csrow->first_page = last_page_in_mmc;
177 csrow->last_page = csrow->first_page + csrow->nr_pages - 1;
H A Dtile_edac.c112 csrow->first_page = 0;
114 csrow->last_page = csrow->first_page + csrow->nr_pages - 1;
H A Dr82600_edac.c248 csrow->first_page = row_base >> PAGE_SHIFT;
250 csrow->nr_pages = csrow->last_page - csrow->first_page + 1;
H A Dedac_mc.c55 debugf4("\tcsrow->first_page = 0x%lx\n", csrow->first_page);
652 csrow->first_page, page, csrow->last_page,
655 if ((page >= csrow->first_page) &&
658 (csrow->first_page & csrow->page_mask))) {
H A Di82443bxgx_edac.c218 csrow->first_page = row_base >> PAGE_SHIFT;
220 csrow->nr_pages = csrow->last_page - csrow->first_page + 1;
H A Dcpc925_edac.c352 csrow->first_page = last_nr_pages;
354 csrow->last_page = csrow->first_page + csrow->nr_pages - 1;
460 if (mci->csrows[rank].first_page == 0) {
468 pa = mci->csrows[rank].first_page << PAGE_SHIFT;
H A Di82860_edac.c165 csrow->first_page = last_cumul_size;
H A Dppc4xx_edac.c962 csi->first_page = ppc4xx_last_page;
963 csi->last_page = csi->first_page + csi->nr_pages - 1;
H A Di3000_edac.c394 csrow->first_page = last_cumul_size;
H A Dx38_edac.c380 csrow->first_page = last_page + 1;
H A De7xxx_edac.c380 csrow->first_page = last_cumul_size;
H A Di3200_edac.c383 csrow->first_page = last_page + 1;
H A Di82875p_edac.c370 csrow->first_page = last_cumul_size;
H A Di82975x_edac.c417 csrow->first_page = last_cumul_size;
H A Dmpc85xx_edac.c817 if ((pfn >= csrow->first_page) && (pfn <= csrow->last_page))
945 csrow->first_page = start;
H A Dmv64x60_edac.c667 csrow->first_page = 0;
669 csrow->last_page = csrow->first_page + csrow->nr_pages - 1;
H A De752x_edac.c1079 csrow->first_page = last_cumul_size;
H A Di5000_edac.c1267 p_csrow->first_page = 0 + csrow * 20;
/drivers/infiniband/core/
H A Dfmr_pool.c107 static inline u32 ib_fmr_hash(u64 first_page) argument
109 return jhash_2words((u32) first_page, (u32) (first_page >> 32), 0) &
/drivers/base/
H A Dmemory.c253 struct page *first_page; local
256 first_page = pfn_to_page(phys_index << PFN_SECTION_SHIFT);
260 start_pfn = page_to_pfn(first_page);
268 start_paddr = page_to_pfn(first_page) << PAGE_SHIFT;
/drivers/block/drbd/
H A Ddrbd_bitmap.c1372 int first_page; local
1394 first_page = sl >> (3 + PAGE_SHIFT);
1403 for (page_nr = first_page; page_nr < last_page; page_nr++) {
/drivers/net/ethernet/chelsio/cxgb4/
H A Dt4_hw.c733 u8 first_page[SF_PAGE_SIZE]; local
779 memcpy(first_page, fw_data, SF_PAGE_SIZE);
780 ((struct fw_hdr *)first_page)->fw_ver = htonl(0xffffffff);
781 ret = t4_write_flash(adap, fw_img_start, SF_PAGE_SIZE, first_page);

Completed in 258 milliseconds

12