[Mesa-dev] [PATCH 09/19] winsys/radeon: print error if CS is overflowed
Marek Olšák
maraeo at gmail.com
Thu Aug 9 09:07:21 PDT 2012
and don't submit the CS to the kernel.
---
src/gallium/winsys/radeon/drm/radeon_drm_cs.c | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/src/gallium/winsys/radeon/drm/radeon_drm_cs.c b/src/gallium/winsys/radeon/drm/radeon_drm_cs.c
index 186c5bc..7e0f2f9 100644
--- a/src/gallium/winsys/radeon/drm/radeon_drm_cs.c
+++ b/src/gallium/winsys/radeon/drm/radeon_drm_cs.c
@@ -438,6 +438,10 @@ static void radeon_drm_cs_flush(struct radeon_winsys_cs *rcs, unsigned flags)
struct radeon_drm_cs *cs = radeon_drm_cs(rcs);
struct radeon_cs_context *tmp;
+ if (rcs->cdw > RADEON_MAX_CMDBUF_DWORDS) {
+ fprintf(stderr, "radeon: command stream overflowed\n");
+ }
+
radeon_drm_cs_sync_flush(cs);
/* Flip command streams. */
@@ -445,8 +449,8 @@ static void radeon_drm_cs_flush(struct radeon_winsys_cs *rcs, unsigned flags)
cs->csc = cs->cst;
cs->cst = tmp;
- /* If the CS is not empty, emit it in a separate thread. */
- if (cs->base.cdw) {
+ /* If the CS is not empty or overflowed, emit it in a separate thread. */
+ if (cs->base.cdw && cs->base.cdw <= RADEON_MAX_CMDBUF_DWORDS) {
unsigned i, crelocs = cs->cst->crelocs;
cs->cst->chunks[0].length_dw = cs->base.cdw;
--
1.7.9.5
More information about the mesa-dev
mailing list