Searched defs:area (Results 1 - 6 of 6) sorted by relevance

/mm/
H A Dvmstat.c829 struct free_area *area; local
832 area = &(zone->free_area[order]);
834 list_for_each(curr, &area->free_list[mtype])
H A Dkmemleak.c121 /* scanning area inside a memory block */
440 struct kmemleak_scan_area *area; local
448 hlist_for_each_entry_safe(area, elem, tmp, &object->area_list, node) {
450 kmem_cache_free(scan_area_cache, area);
730 * Add a scanning area to the object. If at least one such area is added,
737 struct kmemleak_scan_area *area; local
741 kmemleak_warn("Adding scan area to unknown object at 0x%08lx\n",
746 area = kmem_cache_alloc(scan_area_cache, gfp_kmemleak_mask(gfp));
747 if (!area) {
1176 struct kmemleak_scan_area *area; local
[all...]
H A Dmmap.c730 * this area are about to be changed to vm_flags - and the no-change
734 * the area passed down from mprotect_fixup, never extending beyond one
757 struct vm_area_struct *area, *next; local
771 area = next;
814 err = vma_adjust(area, addr, next->vm_end,
818 khugepaged_enter_vma_merge(area);
819 return area;
H A Dnommu.c390 * The resulting memory area is 32bit addressable and zeroed so it can be
447 * @size: size of the area
464 void free_vm_area(struct vm_struct *area) argument
480 * like trying to un-brk an area that has already been mapped
H A Dvmalloc.c479 * Track the highest possible candidate for pcpu area
480 * allocation. Areas outside of vmalloc area can be returned
482 * vmalloc area proper.
653 * Free a vmap area, caller ensuring that the area has been unmapped
666 * Free and unmap a vmap area, caller ensuring flush_cache_vunmap had been
676 * Free and unmap a vmap area
1121 * vm_area_add_early - add vmap area early during boot
1124 * This function is used to add fixed kernel vm area to vmlist before
1147 * vm_area_register_early - register vmap area earl
1261 map_vm_area(struct vm_struct *area, pgprot_t prot, struct page ***pages) argument
1319 struct vm_struct *area; local
1457 struct vm_struct *area; local
1547 struct vm_struct *area; local
1571 __vmalloc_area_node(struct vm_struct *area, gfp_t gfp_mask, pgprot_t prot, int node, void *caller) argument
1647 struct vm_struct *area; local
1762 struct vm_struct *area; local
1866 struct vm_struct *area; local
2122 struct vm_struct *area; local
2196 struct vm_struct *area; local
2217 free_vm_area(struct vm_struct *area) argument
2342 int area, area2, last_area, term_area; local
[all...]
H A Dpage_alloc.c769 int low, int high, struct free_area *area,
775 area--;
796 list_add(&page[size].lru, &area->free_list[migratetype]);
797 area->nr_free++;
852 struct free_area * area; local
857 area = &(zone->free_area[current_order]);
858 if (list_empty(&area->free_list[migratetype]))
861 page = list_entry(area->free_list[migratetype].next,
865 area->nr_free--;
866 expand(zone, page, order, current_order, area, migratetyp
768 expand(struct zone *zone, struct page *page, int low, int high, struct free_area *area, int migratetype) argument
969 struct free_area * area; local
[all...]

Completed in 134 milliseconds