Displaying 2 results from an estimated 2 matches for "95905a8".
Did you mean:
59058
2013 Nov 30
1
[PATCH 1/2] nouveau: avoid leaking fences while waiting
This fixes a memory leak in some situations. Also avoids emitting an
extra fence if the kick handler does the call to nouveau_fence_next
itself.
Signed-off-by: Ilia Mirkin <imirkin at alum.mit.edu>
Cc: "9.2 10.0" <mesa-stable at lists.freedesktop.org>
---
TBH I'm pretty confused by the whole fence refcounting logic and its
interaction with emits, updates, etc. However
2013 Dec 02
2
[PATCH] nouveau: Add lots of comments to the buffer transfer logic
....
src/gallium/drivers/nouveau/nouveau_buffer.c | 71 +++++++++++++++++++++++++++-
src/gallium/drivers/nouveau/nouveau_buffer.h | 4 +-
2 files changed, 71 insertions(+), 4 deletions(-)
diff --git a/src/gallium/drivers/nouveau/nouveau_buffer.c b/src/gallium/drivers/nouveau/nouveau_buffer.c
index 95905a8..0b21530 100644
--- a/src/gallium/drivers/nouveau/nouveau_buffer.c
+++ b/src/gallium/drivers/nouveau/nouveau_buffer.c
@@ -129,6 +129,10 @@ nouveau_buffer_destroy(struct pipe_screen *pscreen,
NOUVEAU_DRV_STAT(nouveau_screen(pscreen), buf_obj_current_count, -1);
}
+/* Set up a staging area for...