search for: nouveau_gem_pushbuf_f

Displaying 1 result from an estimated 1 matches for "nouveau_gem_pushbuf_f".

Did you mean: nouveau_gem_pushbuf_2
2009 Sep 07
1
[PATCH] drm/nouveau: fix ref leak in nouveau_gem_pushbuf_validate()
...++++------------ 1 files changed, 42 insertions(+), 23 deletions(-) diff --git a/drivers/gpu/drm/nouveau/nouveau_gem.c b/drivers/gpu/drm/nouveau/nouveau_gem.c index f0c78a8..55e7988 100644 --- a/drivers/gpu/drm/nouveau/nouveau_gem.c +++ b/drivers/gpu/drm/nouveau/nouveau_gem.c @@ -268,6 +268,40 @@ nouveau_gem_pushbuf_fence(struct list_head *list, struct nouveau_fence *fence) } static int +nouveau_gem_pushbuf_lookup_and_reserve(struct nouveau_channel *chan, + struct drm_file *file_priv, + struct drm_nouveau_gem_pushbuf_bo *pbbo, + struct nouveau_bo **bop) +{ + struct drm_gem_object *gem; + struct nouv...