i915: fix freeing path for gem phys objects.
authorDave Airlie <airlied@redhat.com>
Thu, 22 Jan 2009 07:58:49 +0000 (17:58 +1000)
committerDave Airlie <airlied@redhat.com>
Thu, 22 Jan 2009 07:58:49 +0000 (17:58 +1000)
This off-by-one was pointed out by Jesse Barnes.

Signed-off-by: Dave Airlie <airlied@redhat.com>
drivers/gpu/drm/i915/i915_gem.c

index 96316fd..b15ee1f 100644 (file)
@@ -3364,7 +3364,7 @@ void i915_gem_free_all_phys_object(struct drm_device *dev)
 {
        int i;
 
-       for (i = 0; i < I915_MAX_PHYS_OBJECT; i++)
+       for (i = I915_GEM_PHYS_CURSOR_0; i <= I915_MAX_PHYS_OBJECT; i++)
                i915_gem_free_phys_object(dev, i);
 }