Lines Matching refs:refs
49 grant_ref_t *refs; member
463 int count, u32 domid, u32 *refs, u32 *fd) in dmabuf_exp_from_refs() argument
475 map->grants[i].ref = refs[i]; in dmabuf_exp_from_refs()
514 dmabuf_imp_grant_foreign_access(struct page **pages, u32 *refs, in dmabuf_imp_grant_foreign_access() argument
538 refs[i] = cur_ref; in dmabuf_imp_grant_foreign_access()
548 static void dmabuf_imp_end_foreign_access(u32 *refs, int count) in dmabuf_imp_end_foreign_access() argument
553 if (refs[i] != GRANT_INVALID_REF) in dmabuf_imp_end_foreign_access()
554 gnttab_end_foreign_access(refs[i], 0, 0UL); in dmabuf_imp_end_foreign_access()
560 kfree(gntdev_dmabuf->u.imp.refs); in dmabuf_imp_free_storage()
573 gntdev_dmabuf->u.imp.refs = kcalloc(count, in dmabuf_imp_alloc_storage()
574 sizeof(gntdev_dmabuf->u.imp.refs[0]), in dmabuf_imp_alloc_storage()
576 if (!gntdev_dmabuf->u.imp.refs) in dmabuf_imp_alloc_storage()
588 gntdev_dmabuf->u.imp.refs[i] = GRANT_INVALID_REF; in dmabuf_imp_alloc_storage()
664 gntdev_dmabuf->u.imp.refs, in dmabuf_imp_to_refs()
678 dmabuf_imp_end_foreign_access(gntdev_dmabuf->u.imp.refs, count); in dmabuf_imp_to_refs()
724 dmabuf_imp_end_foreign_access(gntdev_dmabuf->u.imp.refs, in dmabuf_imp_release()
746 u32 *refs; in gntdev_ioctl_dmabuf_exp_from_refs() local
761 refs = kcalloc(op.count, sizeof(*refs), GFP_KERNEL); in gntdev_ioctl_dmabuf_exp_from_refs()
762 if (!refs) in gntdev_ioctl_dmabuf_exp_from_refs()
765 if (copy_from_user(refs, u->refs, sizeof(*refs) * op.count) != 0) { in gntdev_ioctl_dmabuf_exp_from_refs()
771 op.domid, refs, &op.fd); in gntdev_ioctl_dmabuf_exp_from_refs()
779 kfree(refs); in gntdev_ioctl_dmabuf_exp_from_refs()
814 if (copy_to_user(u->refs, gntdev_dmabuf->u.imp.refs, in gntdev_ioctl_dmabuf_imp_to_refs()
815 sizeof(*u->refs) * op.count) != 0) { in gntdev_ioctl_dmabuf_imp_to_refs()