Home
last modified time | relevance | path

Searched refs:total_pages (Results 1 – 22 of 22) sorted by relevance

/linux/arch/parisc/kernel/
A Dpci-dma.c344 unsigned long total_pages = pcxl_res_size << 3; /* 8 bits per byte */ in proc_pcxl_dma_show() local
347 PCXL_DMA_MAP_SIZE, total_pages); in proc_pcxl_dma_show()
356 seq_printf(m, "pages %8ld %8ld %8ld %8ld%%\n", total_pages, in proc_pcxl_dma_show()
357 total_pages - pcxl_used_pages, pcxl_used_pages, in proc_pcxl_dma_show()
358 (pcxl_used_pages * 100 / total_pages)); in proc_pcxl_dma_show()
/linux/arch/um/kernel/
A Dphysmem.c30 unsigned long iomem_pages, total_pages; in mem_total_pages() local
36 total_pages = phys_pages + iomem_pages + highmem_pages; in mem_total_pages()
38 max_mapnr = total_pages; in mem_total_pages()
/linux/mm/
A Dfrontswap.c428 unsigned long total_pages = 0, total_pages_to_unuse; in __frontswap_shrink() local
432 total_pages = __frontswap_curr_pages(); in __frontswap_shrink()
433 if (total_pages <= target_pages) { in __frontswap_shrink()
438 total_pages_to_unuse = total_pages - target_pages; in __frontswap_shrink()
A Dmempolicy.c2834 unsigned long total_pages = node_present_pages(nid); in numa_policy_init() local
2837 if (largest < total_pages) { in numa_policy_init()
2838 largest = total_pages; in numa_policy_init()
2843 if ((total_pages << PAGE_SHIFT) >= (16 << 20)) in numa_policy_init()
A Dzsmalloc.c595 unsigned long total_objs = 0, total_used_objs = 0, total_pages = 0; in zs_stats_size_show() local
631 total_pages += pages_used; in zs_stats_size_show()
639 total_used_objs, total_pages, "", total_freeable); in zs_stats_size_show()
A Dfilemap.c294 int total_pages = 0; in page_cache_delete_batch() local
333 total_pages++; in page_cache_delete_batch()
335 mapping->nrpages -= total_pages; in page_cache_delete_batch()
A Dpage_alloc.c6821 unsigned long total_pages; in zone_highsize() local
6829 total_pages = low_wmark_pages(zone); in zone_highsize()
6836 total_pages = zone_managed_pages(zone) / percpu_pagelist_high_fraction; in zone_highsize()
6850 high = total_pages / nr_split_cpus; in zone_highsize()
/linux/drivers/xen/
A Dballoon.c285 - balloon_stats.total_pages; in reserve_additional_memory()
349 balloon_stats.total_pages += balloon_hotplug; in reserve_additional_memory()
712 balloon_stats.total_pages += extra_pfn_end - start_pfn; in balloon_add_region()
736 balloon_stats.total_pages = balloon_stats.current_pages; in balloon_init()
/linux/arch/powerpc/platforms/pseries/
A Dcmm.c240 const long total_pages = totalram_pages() + __loaned_pages; in cmm_get_mpp() local
258 if (target < 0 || total_pages < min_mem_pages) in cmm_get_mpp()
266 active_pages_target = total_pages - target; in cmm_get_mpp()
269 target = total_pages - min_mem_pages; in cmm_get_mpp()
/linux/include/xen/
A Dballoon.h18 unsigned long total_pages; member
/linux/drivers/parisc/
A Dccio-dma.c1038 unsigned int total_pages = ioc->res_size << 3; in ccio_proc_info() local
1050 total_pages * 8, total_pages); in ccio_proc_info()
1054 total_pages - ioc->used_pages, ioc->used_pages, in ccio_proc_info()
1055 (int)(ioc->used_pages * 100 / total_pages)); in ccio_proc_info()
1059 ioc->res_size, total_pages); in ccio_proc_info()
A Dsba_iommu.c1780 int total_pages = (int) (ioc->res_size << 3); /* 8 bits per byte */ in sba_proc_info() local
1792 total_pages); in sba_proc_info()
1811 total_pages - ioc->used_pages, ioc->used_pages, in sba_proc_info()
1812 (int)(ioc->used_pages * 100 / total_pages)); in sba_proc_info()
/linux/kernel/dma/
A Dcontiguous.c116 unsigned long total_pages = PHYS_PFN(memblock_phys_mem_size()); in cma_early_percent_memory() local
118 return (total_pages * CONFIG_CMA_SIZE_PERCENTAGE / 100) << PAGE_SHIFT; in cma_early_percent_memory()
/linux/tools/vm/
A Dpage-types.c202 static unsigned long total_pages; variable
448 total_pages, pages2mb(total_pages)); in show_summary()
659 total_pages++; in add_page()
723 total_pages++; in walk_swap()
/linux/kernel/
A Dkexec_core.c153 unsigned long total_pages = 0; in sanity_check_segment_list() local
223 total_pages += PAGE_COUNT(image->segment[i].memsz); in sanity_check_segment_list()
226 if (total_pages > nr_pages / 2) in sanity_check_segment_list()
/linux/drivers/md/
A Draid5-cache.c1627 int total_pages; /* total allocated pages */ member
1642 ctx->total_pages = 0; in r5l_recovery_allocate_ra_pool()
1643 while (ctx->total_pages < R5L_RECOVERY_PAGE_POOL_SIZE) { in r5l_recovery_allocate_ra_pool()
1648 ctx->ra_pool[ctx->total_pages] = page; in r5l_recovery_allocate_ra_pool()
1649 ctx->total_pages += 1; in r5l_recovery_allocate_ra_pool()
1652 if (ctx->total_pages == 0) { in r5l_recovery_allocate_ra_pool()
1666 for (i = 0; i < ctx->total_pages; ++i) in r5l_recovery_free_ra_pool()
1689 while (ctx->valid_pages < ctx->total_pages) { in r5l_recovery_fetch_ra_pool()
/linux/drivers/edac/
A Dedac_mc_sysfs.c800 int total_pages = 0, csrow_idx, j; in mci_size_mb_show() local
808 total_pages += dimm->nr_pages; in mci_size_mb_show()
812 return sprintf(data, "%u\n", PAGES_TO_MiB(total_pages)); in mci_size_mb_show()
/linux/drivers/gpu/drm/i915/gvt/
A Dkvmgt.c254 int total_pages; in gvt_unpin_guest_page() local
258 total_pages = roundup(size, PAGE_SIZE) / PAGE_SIZE; in gvt_unpin_guest_page()
260 for (npage = 0; npage < total_pages; npage++) { in gvt_unpin_guest_page()
274 int total_pages; in gvt_pin_guest_page() local
278 total_pages = roundup(size, PAGE_SIZE) / PAGE_SIZE; in gvt_pin_guest_page()
283 for (npage = 0; npage < total_pages; npage++) { in gvt_pin_guest_page()
/linux/drivers/scsi/
A Dmvumi.h411 u8 total_pages; member
A Dmvumi.c1137 ((struct mvumi_hs_page1 *) hs_header)->total_pages; in mvumi_handshake()
/linux/fs/ceph/
A Daddr.c625 int num_pages, total_pages = 0; in writepages_finish() local
663 total_pages += num_pages; in writepages_finish()
694 ceph_put_wrbuffer_cap_refs(ci, total_pages, snapc); in writepages_finish()
/linux/drivers/net/ethernet/mellanox/mlx4/
A Dresource_tracker.c2730 int total_pages; in qp_get_mtt_size() local
2739 total_pages = !tot ? 1 : roundup_pow_of_two(tot); in qp_get_mtt_size()
2741 return total_pages; in qp_get_mtt_size()

Completed in 97 milliseconds