Searched refs:max_pages (Results 1 – 11 of 11) sorted by relevance
/drivers/gpu/drm/ |
D | ati_pcigart.c | 62 int max_pages; in drm_ati_pcigart_cleanup() local 72 max_pages = (gart_info->table_size / sizeof(u32)); in drm_ati_pcigart_cleanup() 73 pages = (entry->pages <= max_pages) in drm_ati_pcigart_cleanup() 74 ? entry->pages : max_pages; in drm_ati_pcigart_cleanup() 104 int max_pages; in drm_ati_pcigart_init() local 132 max_pages = (gart_info->table_size / sizeof(u32)); in drm_ati_pcigart_init() 133 pages = (entry->pages <= max_pages) in drm_ati_pcigart_init() 134 ? entry->pages : max_pages; in drm_ati_pcigart_init() 136 memset(pci_gart, 0, max_pages * sizeof(u32)); in drm_ati_pcigart_init()
|
/drivers/net/mlx4/ |
D | mr.c | 506 if (npages > fmr->max_pages) in mlx4_check_fmr() 572 int mlx4_fmr_alloc(struct mlx4_dev *dev, u32 pd, u32 access, int max_pages, in mlx4_fmr_alloc() argument 583 if (max_pages * sizeof *fmr->mtts > PAGE_SIZE) in mlx4_fmr_alloc() 587 fmr->max_pages = max_pages; in mlx4_fmr_alloc() 591 err = mlx4_mr_alloc(dev, pd, 0, 0, access, max_pages, in mlx4_fmr_alloc()
|
/drivers/infiniband/core/ |
D | fmr_pool.c | 86 int max_pages; member 280 pool->max_pages = params->max_pages_per_fmr; in ib_create_fmr_pool() 302 .max_pages = params->max_pages_per_fmr, in ib_create_fmr_pool() 444 if (list_len < 1 || list_len > pool->max_pages) in ib_fmr_pool_map_phys()
|
/drivers/infiniband/hw/ipath/ |
D | ipath_mr.c | 293 m = (fmr_attr->max_pages + IPATH_SEGSZ - 1) / IPATH_SEGSZ; in ipath_alloc_fmr() 324 fmr->mr.max_segs = fmr_attr->max_pages; in ipath_alloc_fmr()
|
/drivers/infiniband/hw/mthca/ |
D | mthca_mr.c | 590 int list_len = mr->attr.max_pages; in mthca_fmr_alloc() 599 mr->attr.max_pages * sizeof *mr->mem.arbel.mtts > PAGE_SIZE) in mthca_fmr_alloc() 717 if (list_len > fmr->attr.max_pages) in mthca_check_fmr()
|
/drivers/infiniband/hw/mlx4/ |
D | mr.c | 272 fmr_attr->max_pages, fmr_attr->max_maps, in mlx4_ib_fmr_alloc()
|
/drivers/net/benet/ |
D | be_cmds.c | 195 static void be_cmd_page_addrs_prepare(struct phys_addr *pages, u32 max_pages, in be_cmd_page_addrs_prepare() argument 198 int i, buf_pages = min(PAGES_4K_SPANNED(mem->va, mem->size), max_pages); in be_cmd_page_addrs_prepare()
|
/drivers/media/video/ |
D | omap24xxcam.c | 286 int max_pages, err = 0, i = 0; in omap24xxcam_vbq_alloc_mmap_buffer() local 293 max_pages = vb->bsize >> PAGE_SHIFT; in omap24xxcam_vbq_alloc_mmap_buffer() 294 dma->sglist = kcalloc(max_pages, sizeof(*dma->sglist), GFP_KERNEL); in omap24xxcam_vbq_alloc_mmap_buffer()
|
/drivers/infiniband/hw/ehca/ |
D | ehca_mrmw.c | 763 if ((fmr_attr->max_pages == 0) || (fmr_attr->max_maps == 0)) { in ehca_alloc_fmr() 766 fmr_attr->max_pages, fmr_attr->max_maps, in ehca_alloc_fmr() 795 fmr_attr->max_pages * (1 << fmr_attr->page_shift), in ehca_alloc_fmr() 806 e_fmr->fmr_max_pages = fmr_attr->max_pages; in ehca_alloc_fmr()
|
/drivers/infiniband/hw/nes/ |
D | nes_verbs.c | 324 if (ibfmr_attr->max_pages == 1) { in nes_alloc_fmr() 328 } else if (ibfmr_attr->max_pages <= 32) { in nes_alloc_fmr() 332 } else if (ibfmr_attr->max_pages <= 512) { in nes_alloc_fmr() 340 nesfmr->nesmr.pbls_used = 1 + (ibfmr_attr->max_pages >> 9) + in nes_alloc_fmr() 341 ((ibfmr_attr->max_pages & 511) ? 1 : 0); in nes_alloc_fmr()
|
/drivers/scsi/ |
D | st.c | 4532 const unsigned int max_pages, unsigned long uaddr, in sgl_map_user_pages() argument 4547 if (nr_pages > max_pages) in sgl_map_user_pages() 4554 if ((pages = kmalloc(max_pages * sizeof(*pages), GFP_KERNEL)) == NULL) in sgl_map_user_pages()
|