diff options
author | Dave Airlie <airlied@redhat.com> | 2010-03-19 10:33:44 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2010-03-31 13:11:35 +1000 |
commit | 97f23b3d85a4d734a8584dade3a34579931c8f8d (patch) | |
tree | 863d7dfd484323e60897b8a955627dc60737acc9 /drivers | |
parent | a084e6ee6e64a76f1a9665d527203cdab7d6048f (diff) | |
download | linux-3.10-97f23b3d85a4d734a8584dade3a34579931c8f8d.tar.gz linux-3.10-97f23b3d85a4d734a8584dade3a34579931c8f8d.tar.bz2 linux-3.10-97f23b3d85a4d734a8584dade3a34579931c8f8d.zip |
drm/radeon/kms: don't print error on -ERESTARTSYS.
We can get this if the user moves the mouse when we are waiting to move
some stuff around in the validate. Don't fail.
Cc: stable@kernel.org
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/gpu/drm/radeon/radeon_cs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/radeon/radeon_cs.c b/drivers/gpu/drm/radeon/radeon_cs.c index 70ba02ed772..dd190f9315d 100644 --- a/drivers/gpu/drm/radeon/radeon_cs.c +++ b/drivers/gpu/drm/radeon/radeon_cs.c @@ -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; |