/drivers/staging/zsmalloc/ |
H A D | zsmalloc-main.c | 216 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 D | cell_edac.c | 51 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 D | amd76x_edac.c | 149 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 D | pasemi_edac.c | 113 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 D | tile_edac.c | 112 csrow->first_page = 0; 114 csrow->last_page = csrow->first_page + csrow->nr_pages - 1;
|
H A D | r82600_edac.c | 248 csrow->first_page = row_base >> PAGE_SHIFT; 250 csrow->nr_pages = csrow->last_page - csrow->first_page + 1;
|
H A D | edac_mc.c | 55 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 D | i82443bxgx_edac.c | 218 csrow->first_page = row_base >> PAGE_SHIFT; 220 csrow->nr_pages = csrow->last_page - csrow->first_page + 1;
|
H A D | cpc925_edac.c | 352 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 D | i82860_edac.c | 165 csrow->first_page = last_cumul_size;
|
H A D | ppc4xx_edac.c | 962 csi->first_page = ppc4xx_last_page; 963 csi->last_page = csi->first_page + csi->nr_pages - 1;
|
H A D | i3000_edac.c | 394 csrow->first_page = last_cumul_size;
|
H A D | x38_edac.c | 380 csrow->first_page = last_page + 1;
|
H A D | e7xxx_edac.c | 380 csrow->first_page = last_cumul_size;
|
H A D | i3200_edac.c | 383 csrow->first_page = last_page + 1;
|
H A D | i82875p_edac.c | 370 csrow->first_page = last_cumul_size;
|
H A D | i82975x_edac.c | 417 csrow->first_page = last_cumul_size;
|
H A D | mpc85xx_edac.c | 817 if ((pfn >= csrow->first_page) && (pfn <= csrow->last_page)) 945 csrow->first_page = start;
|
H A D | mv64x60_edac.c | 667 csrow->first_page = 0; 669 csrow->last_page = csrow->first_page + csrow->nr_pages - 1;
|
H A D | e752x_edac.c | 1079 csrow->first_page = last_cumul_size;
|
H A D | i5000_edac.c | 1267 p_csrow->first_page = 0 + csrow * 20;
|
/drivers/infiniband/core/ |
H A D | fmr_pool.c | 107 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 D | memory.c | 253 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 D | drbd_bitmap.c | 1372 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 D | t4_hw.c | 733 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);
|