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

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Dmm_types.h57 struct page *first_page; /* Compound pages */ member in struct:page::__anon10041::__anon10044
H A Dmm.h269 return page->first_page;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/pci/emu10k1/
H A Dmemory.c89 blk->first_page = get_aligned_page(blk->mem.offset);
91 blk->pages = blk->last_page - blk->first_page + 1;
153 for (pg = blk->first_page; pg <= blk->last_page; pg++) {
189 for (pg = blk->first_page; pg <= blk->last_page; pg++) {
213 if (page + psize <= blk->first_page)
319 for (page = blk->first_page; page <= blk->last_page; page++, idx++) {
324 blk->first_page, blk->last_page, sgbuf->pages);
424 int first_page, last_page; local
425 first_page = blk->first_page;
446 int page, first_page, last_page; local
485 int page, first_page, last_page; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/pci/trident/
H A Dtrident_memory.c134 #define firstpg(blk) (((struct snd_trident_memblk_arg *)snd_util_memblk_argptr(blk))->first_page)
397 int first_page, last_page; local
398 first_page = firstpg(blk);
401 if (lastpg(q) == first_page)
402 first_page++; /* first page was already allocated */
410 *first_page_ret = first_page;
419 int page, first_page, last_page; local
424 get_single_page_range(hw->tlb.memhdr, blk, &first_page, &last_page);
429 for (page = first_page; page <= last_page; page++) {
444 for (page = first_page; pag
455 int page, first_page, last_page; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/edac/
H A Damd76x_edac.c148 edac_mc_handle_ue(mci, mci->csrows[row].first_page, 0,
161 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 Dr82600_edac.c246 csrow->first_page = row_base >> PAGE_SHIFT;
248 csrow->nr_pages = csrow->last_page - csrow->first_page + 1;
H A Di82860_edac.c165 csrow->first_page = last_cumul_size;
H A Dedac_mc.h283 unsigned long first_page; /* first page number in dimm */ member in struct:csrow_info
H A Di82875p_edac.c365 csrow->first_page = last_cumul_size;
H A De7xxx_edac.c383 csrow->first_page = last_cumul_size;
H A Dedac_mc.c1231 debugf4("\tcsrow->first_page = 0x%lx\n",
1232 csrow->first_page);
1591 csrow->first_page, page, csrow->last_page,
1594 if ((page >= csrow->first_page) &&
1597 (csrow->first_page & csrow->page_mask))) {
H A De752x_edac.c818 csrow->first_page = last_cumul_size;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/base/
H A Dmemory.c156 struct page *first_page; local
161 first_page = pfn_to_page(psection << PFN_SECTION_SHIFT);
170 if (PageReserved(first_page+i))
182 start_pfn = page_to_pfn(first_page);
188 start_paddr = page_to_pfn(first_page) << PAGE_SHIFT;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sparc64/kernel/
H A Dpci_iommu.c230 unsigned long flags, order, first_page; local
239 first_page = __get_free_pages(gfp, order);
240 if (first_page == 0UL)
242 memset((char *)first_page, 0, PAGE_SIZE << order);
251 free_pages(first_page, order);
257 ret = (void *) first_page;
259 first_page = __pa(first_page);
263 (first_page & IOPTE_PAGE));
265 first_page
[all...]
H A Dsbus.c210 unsigned long flags, order, first_page; local
219 first_page = __get_free_pages(GFP_KERNEL|__GFP_COMP, order);
220 if (first_page == 0UL)
222 memset((char *)first_page, 0, PAGE_SIZE << order);
232 free_pages(first_page, order);
238 ret = (void *) first_page;
240 first_page = __pa(first_page);
244 (first_page & IOPTE_PAGE));
246 first_page
[all...]
H A Dpci_sun4v.c166 unsigned long flags, order, first_page, npages, n; local
177 first_page = __get_free_pages(gfp, order);
178 if (unlikely(first_page == 0UL))
181 memset((char *)first_page, 0, PAGE_SIZE << order);
194 ret = (void *) first_page;
195 first_page = __pa(first_page);
205 long err = pci_iommu_batch_add(first_page + (n * PAGE_SIZE));
224 free_pages(first_page, order);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/infiniband/core/
H A Dfmr_pool.c108 static inline u32 ib_fmr_hash(u64 first_page) argument
110 return jhash_2words((u32) first_page, (u32) (first_page >> 32), 0) &
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/sound/
H A Dtrident.h280 short first_page, last_page; member in struct:snd_trident_memblk_arg
H A Demu10k1.h1319 int first_page, last_page, pages, mapped_page; member in struct:snd_emu10k1_memblk
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/mm/
H A Dpage_alloc.c256 p->first_page = page;
275 (p->first_page != page)))

Completed in 116 milliseconds