| /linux-6.15/drivers/gpu/drm/xe/ |
| H A D | xe_drm_client.c | 194 struct xe_file *xef = file->driver_priv; in show_meminfo() local 195 struct ttm_device *bdev = &xef->xe->ttm; in show_meminfo() 204 client = xef->client; in show_meminfo() 319 struct xe_file *xef = file->driver_priv; in show_run_ticks() local 320 struct xe_device *xe = xef->xe; in show_run_ticks() 349 mutex_lock(&xef->exec_queue.lock); in show_run_ticks() 350 xa_for_each(&xef->exec_queue.xa, i, q) { in show_run_ticks() 352 mutex_unlock(&xef->exec_queue.lock); in show_run_ticks() 356 mutex_lock(&xef->exec_queue.lock); in show_run_ticks() 359 mutex_unlock(&xef->exec_queue.lock); in show_run_ticks() [all …]
|
| H A D | xe_device.c | 73 struct xe_file *xef; in xe_file_open() local 77 xef = kzalloc(sizeof(*xef), GFP_KERNEL); in xe_file_open() 78 if (!xef) in xe_file_open() 83 kfree(xef); in xe_file_open() 87 xef->drm = file; in xe_file_open() 88 xef->client = client; in xe_file_open() 89 xef->xe = xe; in xe_file_open() 103 xef->pid = task->pid; in xe_file_open() 121 kfree(xef); in xe_file_destroy() 136 return xef; in xe_file_get() [all …]
|
| H A D | xe_exec_queue.c | 47 if (q->xef) in __xe_exec_queue_free() 48 xe_file_put(q->xef); in __xe_exec_queue_free() 311 if (q->xef && atomic_dec_and_test(&q->xef->exec_queue.pending_removal)) in xe_exec_queue_fini() 350 mutex_lock(&xef->exec_queue.lock); in xe_exec_queue_lookup() 351 q = xa_load(&xef->exec_queue.xa, id); in xe_exec_queue_lookup() 354 mutex_unlock(&xef->exec_queue.lock); in xe_exec_queue_lookup() 671 vm = xe_vm_lookup(xef, args->vm_id); in xe_exec_queue_create_ioctl() 710 q->xef = xe_file_get(xef); in xe_exec_queue_create_ioctl() 840 if (!q->xef) in xe_exec_queue_update_run_ticks() 896 mutex_lock(&xef->exec_queue.lock); in xe_exec_queue_destroy_ioctl() [all …]
|
| H A D | xe_exec.c | 108 struct xe_file *xef = to_xe_file(file); in xe_exec_ioctl() local 131 q = xe_exec_queue_lookup(xef, args->exec_queue_id); in xe_exec_ioctl() 162 err = xe_sync_entry_parse(xe, xef, &syncs[num_syncs], in xe_exec_ioctl()
|
| H A D | xe_wait_user_fence.c | 105 struct xe_file *xef = to_xe_file(file); in xe_wait_user_fence_ioctl() local 129 q = xe_exec_queue_lookup(xef, args->exec_queue_id); in xe_wait_user_fence_ioctl()
|
| H A D | xe_device.h | 195 struct xe_file *xe_file_get(struct xe_file *xef); 196 void xe_file_put(struct xe_file *xef);
|
| H A D | xe_sync.c | 113 int xe_sync_entry_parse(struct xe_device *xe, struct xe_file *xef, in xe_sync_entry_parse() argument 141 sync->syncobj = drm_syncobj_find(xef->drm, sync_in.handle); in xe_sync_entry_parse() 162 sync->syncobj = drm_syncobj_find(xef->drm, sync_in.handle); in xe_sync_entry_parse()
|
| H A D | xe_sync.h | 21 int xe_sync_entry_parse(struct xe_device *xe, struct xe_file *xef,
|
| H A D | xe_devcoredump.c | 287 if (q->vm && q->vm->xef) { in devcoredump_snapshot() 288 process_name = q->vm->xef->process_name; in devcoredump_snapshot() 289 ss->pid = q->vm->xef->pid; in devcoredump_snapshot()
|
| H A D | xe_vm.c | 1965 if (vm->xef) in vm_destroy_work_func() 1966 xe_file_put(vm->xef); in vm_destroy_work_func() 1983 mutex_lock(&xef->vm.lock); in xe_vm_lookup() 1984 vm = xa_load(&xef->vm.xa, id); in xe_vm_lookup() 1987 mutex_unlock(&xef->vm.lock); in xe_vm_lookup() 2027 struct xe_file *xef = to_xe_file(file); in xe_vm_create_ioctl() local 2082 vm->xef = xe_file_get(xef); in xe_vm_create_ioctl() 2122 mutex_lock(&xef->vm.lock); in xe_vm_destroy_ioctl() 2129 xa_erase(&xef->vm.xa, args->vm_id); in xe_vm_destroy_ioctl() 2130 mutex_unlock(&xef->vm.lock); in xe_vm_destroy_ioctl() [all …]
|
| H A D | xe_exec_queue_types.h | 42 struct xe_file *xef; member
|
| H A D | xe_oa_types.h | 243 struct xe_file *xef; member
|
| H A D | xe_exec_queue.h | 42 struct xe_exec_queue *xe_exec_queue_lookup(struct xe_file *xef, u32 id);
|
| H A D | xe_oa.c | 79 struct xe_file *xef; member 868 xe_file_put(stream->xef); in xe_oa_stream_destroy() 1379 ret = xe_sync_entry_parse(oa->xe, param->xef, ¶m->syncs[num_syncs], in xe_oa_parse_syncs() 1509 param.xef = stream->xef; in xe_oa_config_locked() 1697 stream->xef = xe_file_get(param->xef); in xe_oa_stream_init() 1789 xe_file_put(stream->xef); in xe_oa_stream_init() 1950 struct xe_file *xef = to_xe_file(file); in xe_oa_stream_open_ioctl() local 1961 param.xef = xef; in xe_oa_stream_open_ioctl() 1968 param.exec_q = xe_exec_queue_lookup(xef, param.exec_queue_id); in xe_oa_stream_open_ioctl()
|
| H A D | xe_vm_types.h | 316 struct xe_file *xef; member
|
| H A D | xe_vm.h | 31 struct xe_vm *xe_vm_lookup(struct xe_file *xef, u32 id);
|
| H A D | xe_guc_submit.c | 1169 if (q->vm && q->vm->xef) { in guc_exec_queue_timedout_job() 1170 process_name = q->vm->xef->process_name; in guc_exec_queue_timedout_job() 1171 pid = q->vm->xef->pid; in guc_exec_queue_timedout_job()
|
| /linux-6.15/net/wireless/certs/ |
| H A D | wens.hex | 21 0x19, 0x2d, 0x32, 0x52, 0xa0, 0x2e, 0x6c, 0xef, 24 0xc0, 0xb7, 0x5d, 0x47, 0x8e, 0x1a, 0xe1, 0xef, 64 0xef, 0x54, 0x68, 0xf7, 0x85, 0x9c, 0xe4, 0x51,
|
| H A D | sforshee.hex | 38 0xef, 0x7a, 0x7f, 0xa5, 0xcb, 0x80, 0xc7, 0x30, 71 0x81, 0x57, 0x1a, 0xef, 0xb2, 0x38, 0x88, 0x58,
|
| /linux-6.15/Documentation/hwmon/ |
| H A D | mlxreg-fan.rst | 33 fan12 (tacho12) 0xef
|
| /linux-6.15/arch/powerpc/boot/dts/fsl/ |
| H A D | qoriq-mpic.dtsi | 81 0xef 0 0 0>;
|
| H A D | qoriq-mpic4.3.dtsi | 87 0xef 0 0 0
|
| /linux-6.15/Documentation/driver-api/tty/ |
| H A D | n_gsm.rst | 117 0xf9, 0x03, 0xef, 0x03, 0xc3, 0x16, 0xf9
|
| /linux-6.15/Documentation/dev-tools/ |
| H A D | kfence.rst | 186 BUG: KFENCE: memory corruption in test_kmalloc_aligned_oob_write+0xef/0x184 189 test_kmalloc_aligned_oob_write+0xef/0x184
|
| /linux-6.15/drivers/tty/vt/ |
| H A D | cp437.uni | 271 0xef U+2229
|