Home
last modified time | relevance | path

Searched refs:object_ids (Results 1 – 6 of 6) sorted by relevance

/kernel/linux/linux-5.10/drivers/gpu/drm/
Ddrm_lease.c414 u32 *object_ids) in fill_object_idr() argument
430 object_ids[o], in fill_object_idr()
526 uint32_t *object_ids; in drm_mode_create_lease_ioctl() local
553 object_ids = memdup_user(u64_to_user_ptr(cl->object_ids), in drm_mode_create_lease_ioctl()
555 if (IS_ERR(object_ids)) { in drm_mode_create_lease_ioctl()
556 ret = PTR_ERR(object_ids); in drm_mode_create_lease_ioctl()
564 object_count, object_ids); in drm_mode_create_lease_ioctl()
565 kfree(object_ids); in drm_mode_create_lease_ioctl()
700 __u32 __user *object_ids = (__u32 __user *) (uintptr_t) (arg->objects_ptr); in drm_mode_get_lease_ioctl() local
732 ret = put_user(object, object_ids + count); in drm_mode_get_lease_ioctl()
/kernel/linux/linux-5.10/drivers/infiniband/hw/mlx5/
Ddevx.c49 struct xarray object_ids; /* second XA level, Key = object id */ member
1275 xa_val_level2 = xa_load(&event->object_ids, sub->xa_key_level2); in devx_cleanup_subscription()
1277 xa_erase(&event->object_ids, in devx_cleanup_subscription()
1341 obj_event = xa_load(&event->object_ids, obj_id); in devx_cq_comp()
1743 xa_val_level2 = xa_load(&event->object_ids, in subscribe_event_xa_dealloc()
1746 xa_erase(&event->object_ids, in subscribe_event_xa_dealloc()
1769 xa_init(&event->object_ids); in subscribe_event_xa_alloc()
1784 obj_event = xa_load(&event->object_ids, key_level2); in subscribe_event_xa_alloc()
1791 err = xa_insert(&event->object_ids, in subscribe_event_xa_alloc()
2024 obj_event = xa_load(&event->object_ids, obj_id); in UVERBS_HANDLER()
[all …]
/kernel/linux/patches/linux-4.19/prebuilts/usr/include/drm/
Ddrm_mode.h499 __u64 object_ids; member
/kernel/linux/linux-5.10/include/uapi/drm/
Ddrm_mode.h943 __u64 object_ids; member
/kernel/linux/patches/linux-5.10/prebuilts/usr/include/drm/
Ddrm_mode.h472 __u64 object_ids; member
/kernel/linux/patches/linux-5.10/yangfan_patch/
Ddrivers.patch15287 object_ids = memdup_user(u64_to_user_ptr(cl->object_ids),
15289 - if (IS_ERR(object_ids)) {
15290 - ret = PTR_ERR(object_ids);
15293 + if (IS_ERR(object_ids))
15294 + return PTR_ERR(object_ids);
15360 __u32 __user *object_ids = (__u32 __user *) (uintptr_t) (arg->objects_ptr);