Re: [Mesa-dev] [PATCH] r600g: don't emit WAIT_UNTIL on cayman/TN (v2)

2013-01-28 Thread Marek Olšák
Reviewed-by: Marek Olšák Marek On Mon, Jan 28, 2013 at 4:55 PM, wrote: > From: Alex Deucher > > It shouldn't be needed and older kernels don't support > it. > > v2: Replace with PS partial flush as before. > > Fixes: > https://bugs.freedesktop.org/show_bug.cgi?id=59945 > > Signed-off-by: Alex

[Mesa-dev] [PATCH] r600g: don't emit WAIT_UNTIL on cayman/TN (v2)

2013-01-28 Thread alexdeucher
From: Alex Deucher It shouldn't be needed and older kernels don't support it. v2: Replace with PS partial flush as before. Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=59945 Signed-off-by: Alex Deucher --- src/gallium/drivers/r600/r600_hw_context.c | 37 +---

Re: [Mesa-dev] [PATCH] r600g: don't emit WAIT_UNTIL on cayman/TN

2013-01-27 Thread Marek Olšák
We should emit PS_PARTIAL_FLUSH instead, because that is what was replaced by WAIT_UNTIL. r600g currently doesn't use PS_PARTIAL_FLUSH at all, which might cause some issues if WAIT_UNTIL is not used either. Marek On Mon, Jan 28, 2013 at 4:16 AM, wrote: > From: Alex Deucher > > It shouldn't be

[Mesa-dev] [PATCH] r600g: don't emit WAIT_UNTIL on cayman/TN

2013-01-27 Thread alexdeucher
From: Alex Deucher It shouldn't be needed and older kernels don't support it. Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=59945 Signed-off-by: Alex Deucher --- src/gallium/drivers/r600/r600_hw_context.c |6 -- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/