|
@@ -243,7 +243,8 @@ int radeon_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp)
|
|
|
}
|
|
|
r = radeon_cs_parser_relocs(&parser);
|
|
|
if (r) {
|
|
|
- DRM_ERROR("Failed to parse relocation !\n");
|
|
|
+ if (r != -ERESTARTSYS)
|
|
|
+ DRM_ERROR("Failed to parse relocation %d!\n", r);
|
|
|
radeon_cs_parser_fini(&parser, r);
|
|
|
mutex_unlock(&rdev->cs_mutex);
|
|
|
return r;
|