OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:vfile
(Results
1 - 2
of
2
) sorted by relevancy
/src/sys/external/bsd/drm2/dist/drm/vgem/
vgem_fence.c
89
static struct dma_fence *vgem_fence_create(struct vgem_file *
vfile
,
135
struct vgem_file *
vfile
= file->driver_priv;
local
151
fence = vgem_fence_create(
vfile
, arg->flags);
177
mutex_lock(&
vfile
->fence_mutex);
178
ret = idr_alloc(&
vfile
->fence_idr, fence, 1, 0, GFP_KERNEL);
179
mutex_unlock(&
vfile
->fence_mutex);
216
struct vgem_file *
vfile
= file->driver_priv;
local
224
mutex_lock(&
vfile
->fence_mutex);
225
fence = idr_replace(&
vfile
->fence_idr, NULL, arg->fence);
226
mutex_unlock(&
vfile
->fence_mutex)
[
all
...]
vgem_drv.c
138
struct vgem_file *
vfile
;
local
141
vfile
= kzalloc(sizeof(*
vfile
), GFP_KERNEL);
142
if (!
vfile
)
145
file->driver_priv =
vfile
;
147
ret = vgem_fence_open(
vfile
);
149
kfree(
vfile
);
158
struct vgem_file *
vfile
= file->driver_priv;
local
160
vgem_fence_close(
vfile
);
161
kfree(
vfile
);
[
all
...]
Completed in 26 milliseconds
Indexes created Sun Mar 01 05:31:48 UTC 2026