/openbmc/linux/drivers/gpu/drm/vmwgfx/ |
H A D | ttm_object.c | 130 struct ttm_object_file *tfile; member 136 ttm_object_file_ref(struct ttm_object_file *tfile) in ttm_object_file_ref() argument 138 kref_get(&tfile->refcount); in ttm_object_file_ref() 139 return tfile; in ttm_object_file_ref() 142 static int ttm_tfile_find_ref_rcu(struct ttm_object_file *tfile, in ttm_tfile_find_ref_rcu() argument 148 hash_for_each_possible_rcu(tfile->ref_hash, hash, head, key) { in ttm_tfile_find_ref_rcu() 157 static int ttm_tfile_find_ref(struct ttm_object_file *tfile, in ttm_tfile_find_ref() argument 163 hash_for_each_possible(tfile->ref_hash, hash, head, key) { in ttm_tfile_find_ref() 174 struct ttm_object_file *tfile = in ttm_object_file_destroy() local 177 kfree(tfile); in ttm_object_file_destroy() [all …]
|
H A D | ttm_object.h | 104 struct ttm_object_file *tfile; member 150 extern int ttm_base_object_init(struct ttm_object_file *tfile, 167 *tfile, uint64_t key); 217 extern int ttm_ref_object_add(struct ttm_object_file *tfile, 233 extern int ttm_ref_object_base_unref(struct ttm_object_file *tfile, 288 extern int ttm_prime_object_init(struct ttm_object_file *tfile, 303 extern int ttm_prime_fd_to_handle(struct ttm_object_file *tfile, 305 extern int ttm_prime_handle_to_fd(struct ttm_object_file *tfile,
|
H A D | vmwgfx_prime.c | 77 struct ttm_object_file *tfile = vmw_fpriv(file_priv)->tfile; in vmw_prime_fd_to_handle() local 78 int ret = ttm_prime_fd_to_handle(tfile, fd, handle); in vmw_prime_fd_to_handle() 91 struct ttm_object_file *tfile = vmw_fpriv(file_priv)->tfile; in vmw_prime_handle_to_fd() local 95 ret = ttm_prime_handle_to_fd(tfile, handle, flags, prime_fd); in vmw_prime_handle_to_fd()
|
H A D | vmwgfx_simple_resource.c | 146 struct ttm_object_file *tfile = vmw_fpriv(file_priv)->tfile; in vmw_simple_resource_create_ioctl() local 162 usimple->base.tfile = NULL; in vmw_simple_resource_create_ioctl() 173 ret = ttm_base_object_init(tfile, &usimple->base, false, in vmw_simple_resource_create_ioctl() 202 vmw_simple_resource_lookup(struct ttm_object_file *tfile, in vmw_simple_resource_lookup() argument 210 base = ttm_base_object_lookup(tfile, handle); in vmw_simple_resource_lookup()
|
H A D | vmwgfx_fence.c | 587 struct ttm_object_file *tfile = vmw_fpriv(file_priv)->tfile; in vmw_user_fence_create() local 611 ret = ttm_base_object_init(tfile, &ufence->base, false, in vmw_user_fence_create() 699 vmw_fence_obj_lookup(struct ttm_object_file *tfile, u32 handle) in vmw_fence_obj_lookup() argument 701 struct ttm_base_object *base = ttm_base_object_lookup(tfile, handle); in vmw_fence_obj_lookup() 728 struct ttm_object_file *tfile = vmw_fpriv(file_priv)->tfile; in vmw_fence_obj_wait_ioctl() local 745 base = vmw_fence_obj_lookup(tfile, arg->handle); in vmw_fence_obj_wait_ioctl() 770 return ttm_ref_object_base_unref(tfile, arg->handle); in vmw_fence_obj_wait_ioctl() 782 struct ttm_object_file *tfile = vmw_fpriv(file_priv)->tfile; in vmw_fence_obj_signaled_ioctl() local 785 base = vmw_fence_obj_lookup(tfile, arg->handle); in vmw_fence_obj_signaled_ioctl() 811 return ttm_ref_object_base_unref(vmw_fpriv(file_priv)->tfile, in vmw_fence_obj_unref_ioctl() [all …]
|
H A D | vmwgfx_va.c | 121 return ttm_ref_object_base_unref(vmw_fpriv(file_priv)->tfile, in vmw_stream_unref_ioctl() 155 struct ttm_object_file *tfile, in vmw_user_stream_lookup() argument 160 vmw_simple_resource_lookup(tfile, *inout_id, &va_stream_func); in vmw_user_stream_lookup()
|
H A D | vmwgfx_shader.c | 680 struct ttm_object_file *tfile = vmw_fpriv(file_priv)->tfile; in vmw_shader_destroy_ioctl() local 682 return ttm_ref_object_base_unref(tfile, arg->handle); in vmw_shader_destroy_ioctl() 692 struct ttm_object_file *tfile, in vmw_user_shader_alloc() argument 707 ushader->base.tfile = NULL; in vmw_user_shader_alloc() 721 ret = ttm_base_object_init(tfile, &ushader->base, false, in vmw_user_shader_alloc() 776 struct ttm_object_file *tfile = vmw_fpriv(file_priv)->tfile; in vmw_shader_define() local 810 num_output_sig, tfile, shader_handle); in vmw_shader_define()
|
H A D | vmwgfx_surface.c | 705 struct ttm_object_file *tfile = vmw_fpriv(file_priv)->tfile; in vmw_surface_destroy_ioctl() local 707 return ttm_ref_object_base_unref(tfile, arg->sid); in vmw_surface_destroy_ioctl() 731 struct ttm_object_file *tfile = vmw_fpriv(file_priv)->tfile; in vmw_surface_define_ioctl() local 837 user_srf->prime.base.tfile = NULL; in vmw_surface_define_ioctl() 873 ret = ttm_prime_object_init(tfile, res->guest_memory_size, &user_srf->prime, in vmw_surface_define_ioctl() 905 struct ttm_object_file *tfile = vmw_fpriv(file_priv)->tfile; in vmw_surface_handle_reference() local 912 ret = ttm_prime_fd_to_handle(tfile, u_handle, &handle); in vmw_surface_handle_reference() 954 ret = ttm_ref_object_add(tfile, base, NULL, require_exist); in vmw_surface_handle_reference() 968 (void) ttm_ref_object_base_unref(tfile, handle); in vmw_surface_handle_reference() 989 struct ttm_object_file *tfile = vmw_fpriv(file_priv)->tfile; in vmw_surface_reference_ioctl() local [all …]
|
H A D | vmwgfx_context.c | 720 struct ttm_object_file *tfile = vmw_fpriv(file_priv)->tfile; in vmw_context_destroy_ioctl() local 722 return ttm_ref_object_base_unref(tfile, arg->cid); in vmw_context_destroy_ioctl() 733 struct ttm_object_file *tfile = vmw_fpriv(file_priv)->tfile; in vmw_context_define() local 749 ctx->base.tfile = NULL; in vmw_context_define() 760 ret = ttm_base_object_init(tfile, &ctx->base, false, VMW_RES_CONTEXT, in vmw_context_define()
|
H A D | vmwgfx_ioctl.c | 173 struct ttm_object_file *tfile = vmw_fpriv(file_priv)->tfile; in vmw_present_ioctl() local 222 ret = vmw_user_resource_lookup_handle(dev_priv, tfile, arg->sid, in vmw_present_ioctl()
|
H A D | vmwgfx_resource.c | 256 struct ttm_object_file *tfile, in vmw_user_resource_lookup_handle() argument 266 base = ttm_base_object_lookup(tfile, handle); in vmw_user_resource_lookup_handle() 296 struct ttm_object_file *tfile = vmw_fpriv(filp)->tfile; in vmw_user_lookup_handle() local 302 ret = vmw_user_resource_lookup_handle(dev_priv, tfile, handle, in vmw_user_lookup_handle()
|
H A D | vmwgfx_overlay.c | 425 struct ttm_object_file *tfile = vmw_fpriv(file_priv)->tfile; in vmw_overlay_ioctl() local 437 ret = vmw_user_stream_lookup(dev_priv, tfile, &arg->stream_id, &res); in vmw_overlay_ioctl()
|
H A D | vmwgfx_resource_priv.h | 151 vmw_simple_resource_lookup(struct ttm_object_file *tfile,
|
H A D | vmwgfx_drv.h | 111 struct ttm_object_file *tfile; member 810 struct ttm_object_file *tfile, 820 struct ttm_object_file *tfile, 1064 struct ttm_object_file *tfile,
|
H A D | vmwgfx_drv.c | 1223 ttm_object_file_release(&vmw_fp->tfile); in vmw_postclose() 1237 vmw_fp->tfile = ttm_object_file_init(dev_priv->tdev); in vmw_driver_open() 1238 if (unlikely(vmw_fp->tfile == NULL)) in vmw_driver_open()
|
H A D | vmwgfx_execbuf.c | 668 (dev_priv, sw_context->fp->tfile, *id_loc, converter, &res); in vmw_cmd_res_check() 1563 vmw_kms_cursor_snoop(srf, sw_context->fp->tfile, &vmw_bo->tbo, header); in vmw_cmd_dma() 3913 ttm_ref_object_base_unref(vmw_fp->tfile, fence_handle); in vmw_execbuf_copy_fence_user() 4064 (dev_priv, sw_context->fp->tfile, handle, in vmw_execbuf_tie_context()
|
H A D | vmwgfx_kms.c | 364 struct ttm_object_file *tfile, in vmw_kms_cursor_snoop() argument
|
/openbmc/linux/drivers/net/ |
H A D | tun.c | 227 struct tun_file *tfile = container_of(napi, struct tun_file, napi); in tun_napi_receive() local 228 struct sk_buff_head *queue = &tfile->sk.sk_write_queue; in tun_napi_receive() 265 static void tun_napi_init(struct tun_struct *tun, struct tun_file *tfile, in tun_napi_init() argument 268 tfile->napi_enabled = napi_en; in tun_napi_init() 269 tfile->napi_frags_enabled = napi_en && napi_frags; in tun_napi_init() 271 netif_napi_add_tx(tun->dev, &tfile->napi, tun_napi_poll); in tun_napi_init() 272 napi_enable(&tfile->napi); in tun_napi_init() 276 static void tun_napi_enable(struct tun_file *tfile) in tun_napi_enable() argument 278 if (tfile->napi_enabled) in tun_napi_enable() 279 napi_enable(&tfile->napi); in tun_napi_enable() [all …]
|
/openbmc/linux/drivers/remoteproc/ |
H A D | remoteproc_internal.h | 22 struct dentry *tfile; member 66 void rproc_remove_trace_file(struct dentry *tfile);
|
H A D | remoteproc_debugfs.c | 381 void rproc_remove_trace_file(struct dentry *tfile) in rproc_remove_trace_file() argument 383 debugfs_remove(tfile); in rproc_remove_trace_file()
|
H A D | remoteproc_core.c | 579 trace->tfile = rproc_create_trace_file(name, rproc, trace); in rproc_handle_trace() 1229 rproc_remove_trace_file(trace->tfile); in rproc_resource_cleanup()
|
/openbmc/openbmc/poky/bitbake/lib/bb/fetch2/ |
H A D | git.py | 516 fd, tfile = tempfile.mkstemp(dir=os.path.dirname(filename)) 518 yield tfile 521 os.chmod(tfile, (0o666 & ~umask)) 522 os.rename(tfile, filename) 536 with create_atomic(ud.fullshallow) as tfile: 537 runfetchcmd("tar -czf %s ." % tfile, d, workdir=shallowclone) 546 with create_atomic(ud.fullmirror) as tfile: 550 % (tfile, mtime), d, workdir=ud.clonedir)
|
/openbmc/linux/fs/ |
H A D | eventpoll.c | 1519 struct file *tfile, int fd, int full_check) in ep_insert() argument 1527 if (is_file_epoll(tfile)) in ep_insert() 1528 tep = tfile->private_data; in ep_insert() 1545 ep_set_ffd(&epi->ffd, tfile, fd); in ep_insert() 1552 if (unlikely(attach_epitem(tfile, epi) < 0)) { in ep_insert() 1561 list_file(tfile); in ep_insert()
|