From: Ben Skeggs Date: Fri, 8 Jan 2010 00:53:40 +0000 (+1000) Subject: drm/nouveau: use dma.max rather than pushbuf size for checking GET validity X-Git-Tag: v2.6.33-rc4~17^2^2~2 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=400f14ac4ef02b2f77c9d0e3ad7d66e2f6c8e663;p=karo-tx-linux.git drm/nouveau: use dma.max rather than pushbuf size for checking GET validity Some upcoming G80 DMA changes will depend on this, but it's split out for bisectibility just in case it causes some unexpected issues. Signed-off-by: Ben Skeggs --- diff --git a/drivers/gpu/drm/nouveau/nouveau_dma.c b/drivers/gpu/drm/nouveau/nouveau_dma.c index f1fd3f2b9813..3f7f78e03d42 100644 --- a/drivers/gpu/drm/nouveau/nouveau_dma.c +++ b/drivers/gpu/drm/nouveau/nouveau_dma.c @@ -130,7 +130,7 @@ READ_GET(struct nouveau_channel *chan, uint32_t *get) val = nvchan_rd32(chan, chan->user_get); if (val < chan->pushbuf_base || - val >= chan->pushbuf_base + chan->pushbuf_bo->bo.mem.size) { + val > chan->pushbuf_base + (chan->dma.max << 2)) { /* meaningless to dma_wait() except to know whether the * GPU has stalled or not */