drm/nouveau: Fix a crash at card takedown for NV40 and older cards
authorJimmy Rentz <jb17bsome@gmail.com>
Sun, 17 Apr 2011 20:15:09 +0000 (16:15 -0400)
committerBen Skeggs <bskeggs@redhat.com>
Mon, 16 May 2011 00:50:04 +0000 (10:50 +1000)
commit976661093dab143f164b81f15133724fa2a4bb86
treefbeabcef93379eedcff2765a04c92c0a99446695
parent2abdb057e45ea9b558653a97d979053cfdd1a04a
drm/nouveau: Fix a crash at card takedown for NV40 and older cards

NV40 and older cards (pre NV50) reserve a vram bo for the vga memory at
card init. This bo is then freed at card shutdown.  The problem is that
the ttm bo vram manager was already freed. So a crash occurs when the
vga bo is freed. The fix is to free the vga bo prior to freeing the ttm
bo vram manager. There might be other solutions but this seemed the
simplest to me.

Signed-off-by: Jimmy Rentz <jb17bsome@gmail.com>
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
drivers/gpu/drm/nouveau/nouveau_mem.c
drivers/gpu/drm/nouveau/nouveau_state.c