pages_mapped      305 arch/parisc/kernel/pci-dma.c 	unsigned int pages_mapped = size >> PAGE_SHIFT;
pages_mapped      308 arch/parisc/kernel/pci-dma.c  	mask >>= BITS_PER_LONG - pages_mapped;
pages_mapped      311 arch/parisc/kernel/pci-dma.c 		res_idx, size, pages_mapped, mask);
pages_mapped      315 arch/parisc/kernel/pci-dma.c 	if(pages_mapped <= 8) {
pages_mapped      317 arch/parisc/kernel/pci-dma.c 	} else if(pages_mapped <= 16) {
pages_mapped      319 arch/parisc/kernel/pci-dma.c 	} else if(pages_mapped <= 32) {
pages_mapped      326 arch/parisc/kernel/pci-dma.c 	pcxl_used_pages -= (pages_mapped ? pages_mapped : 1);
pages_mapped      327 arch/parisc/kernel/pci-dma.c 	pcxl_used_bytes -= ((pages_mapped >> 3) ? (pages_mapped >> 3) : 1);
pages_mapped      935 drivers/infiniband/hw/mlx5/mr.c 	size_t pages_mapped = 0;
pages_mapped     1002 drivers/infiniband/hw/mlx5/mr.c 	for (pages_mapped = 0;
pages_mapped     1003 drivers/infiniband/hw/mlx5/mr.c 	     pages_mapped < pages_to_map && !err;
pages_mapped     1004 drivers/infiniband/hw/mlx5/mr.c 	     pages_mapped += pages_iter, idx += pages_iter) {
pages_mapped     1005 drivers/infiniband/hw/mlx5/mr.c 		npages = min_t(int, pages_iter, pages_to_map - pages_mapped);
pages_mapped     1015 drivers/infiniband/hw/mlx5/mr.c 		if (pages_mapped + pages_iter >= pages_to_map) {
pages_mapped      431 drivers/parisc/ccio-dma.c ccio_free_range(struct ioc *ioc, dma_addr_t iova, unsigned long pages_mapped)
pages_mapped      436 drivers/parisc/ccio-dma.c 	BUG_ON(pages_mapped == 0);
pages_mapped      437 drivers/parisc/ccio-dma.c 	BUG_ON((pages_mapped * IOVP_SIZE) > DMA_CHUNK_SIZE);
pages_mapped      438 drivers/parisc/ccio-dma.c 	BUG_ON(pages_mapped > BITS_PER_LONG);
pages_mapped      441 drivers/parisc/ccio-dma.c 		__func__, res_idx, pages_mapped);
pages_mapped      444 drivers/parisc/ccio-dma.c 	ioc->used_pages -= pages_mapped;
pages_mapped      447 drivers/parisc/ccio-dma.c 	if(pages_mapped <= 8) {
pages_mapped      450 drivers/parisc/ccio-dma.c 		unsigned long mask = ~(~0UL >> pages_mapped);
pages_mapped      455 drivers/parisc/ccio-dma.c 	} else if(pages_mapped <= 16) {
pages_mapped      457 drivers/parisc/ccio-dma.c 	} else if(pages_mapped <= 32) {
pages_mapped      460 drivers/parisc/ccio-dma.c 	} else if(pages_mapped <= 64) {
pages_mapped       63 drivers/xen/gntdev.c static atomic_t pages_mapped = ATOMIC_INIT(0);
pages_mapped       77 drivers/xen/gntdev.c 	return atomic_add_return(count, &pages_mapped) > limit;
pages_mapped      245 drivers/xen/gntdev.c 	atomic_sub(map->count, &pages_mapped);