Home | History | Annotate | Download | only in drm

Lines Matching defs:objs

760 			  struct drm_gem_object **objs)
775 objs[i] = obj;
796 * @objs filled in with GEM object pointers. Returned GEM objects need to be
806 struct drm_gem_object **objs;
811 objs = kvmalloc_array(count, sizeof(struct drm_gem_object *),
813 if (!objs)
828 ret = objects_lookup(filp, handles, count, objs);
829 *objs_out = objs;
1410 * @objs: drm_gem_objects to lock
1411 * @count: Number of objects in @objs
1416 drm_gem_lock_reservations(struct drm_gem_object **objs, int count,
1426 struct drm_gem_object *obj = objs[contended];
1440 ret = dma_resv_lock_interruptible(objs[i]->resv,
1446 dma_resv_unlock(objs[j]->resv);
1449 dma_resv_unlock(objs[contended]->resv);
1468 drm_gem_unlock_reservations(struct drm_gem_object **objs, int count,
1474 dma_resv_unlock(objs[i]->resv);