Lines Matching refs:vpgt
227 struct nvkm_vm_pgt *vpgt; in nvkm_vm_unmap_pgt() local
232 vpgt = &vm->pgt[pde - vm->fpde]; in nvkm_vm_unmap_pgt()
233 if (--vpgt->refcount[big]) in nvkm_vm_unmap_pgt()
236 pgt = vpgt->obj[big]; in nvkm_vm_unmap_pgt()
237 vpgt->obj[big] = NULL; in nvkm_vm_unmap_pgt()
240 mmu->map_pgt(vpgd->obj, pde, vpgt->obj); in nvkm_vm_unmap_pgt()
253 struct nvkm_vm_pgt *vpgt = &vm->pgt[pde - vm->fpde]; in nvkm_vm_map_pgt() local
271 if (unlikely(vpgt->refcount[big]++)) { in nvkm_vm_map_pgt()
278 vpgt->obj[big] = pgt; in nvkm_vm_map_pgt()
280 mmu->map_pgt(vpgd->obj, pde, vpgt->obj); in nvkm_vm_map_pgt()
308 struct nvkm_vm_pgt *vpgt = &vm->pgt[pde - vm->fpde]; in nvkm_vm_get() local
311 if (likely(vpgt->refcount[big])) { in nvkm_vm_get()
312 vpgt->refcount[big]++; in nvkm_vm_get()