Searched defs:blocks (Results 1 - 2 of 2) sorted by relevance

/mm/
H A Ddmapool.c12 * This allocator returns small blocks of a given size which are DMA-able by
14 * new pages, then splits them up into blocks of the required size.
19 * allocated pages. Each page in the page_list is split into blocks of at
20 * least 'size' bytes. Free blocks are tracked in an unsorted singly-linked
21 * list of free blocks within the page. Used blocks aren't tracked, but we
88 unsigned blocks = 0; local
93 blocks += page->in_use;
99 pool->name, blocks,
113 * dma_pool_create - Creates a pool of consistent memory blocks, fo
[all...]
H A Dvmstat.c539 * how many suitable free blocks there *might* be if MOVABLE pages were
554 unsigned long blocks; local
556 /* Count number of free blocks */
557 blocks = zone->free_area[order].nr_free;
558 info->free_blocks_total += blocks;
561 info->free_pages += blocks << order;
563 /* Count the suitable free blocks */
565 info->free_blocks_suitable += blocks <<
899 seq_printf(m, "\n%-23s", "Number of blocks type ");

Completed in 54 milliseconds