dect
/
linux-2.6
Archived
13
0
Fork 0

drm/i915: Don't return error in evict_everything when we get to the end.

Returning -ENOMEM errored all the way out of execbuf, so the rendering never
occurred.

Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
Owain Ainsworth 2008-12-06 20:42:20 -08:00 committed by Dave Airlie
parent fae7043c65
commit 15c35334c9
1 changed files with 2 additions and 0 deletions

View File

@ -1104,6 +1104,8 @@ i915_gem_evict_everything(struct drm_device *dev)
if (ret != 0)
break;
}
if (ret == -ENOMEM)
return 0;
return ret;
}