drm/radeon: fix fence related segfault in CS

commit 93bf888c5c upstream.

Don't return success if scheduling the IB fails, otherwise
we end up with an oops in ttm_eu_fence_buffer_objects.

Signed-off-by: Christian König <deathsimple@vodafone.de>
Reviewed-by: Jerome Glisse <jglisse@redhat.com>
Reviewed-by: Michel Dänzer <michel.daenzer@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Christian König
2012-07-03 14:05:41 +02:00
committed by Greg Kroah-Hartman
parent 787852ce0c
commit 2c742f74ec

View File

@@ -377,7 +377,7 @@ static int radeon_cs_ib_chunk(struct radeon_device *rdev,
if (r) {
DRM_ERROR("Failed to schedule IB !\n");
}
return 0;
return r;
}
static int radeon_bo_vm_update_pte(struct radeon_cs_parser *parser,