lkml.org 
[lkml]   [2010]   [Sep]   [18]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    Date
    From
    Subject[121/129] i915: return -EFAULT if copy_to_user fails
    2.6.35-stable review patch.  If anyone has any objections, please let us know.

    ------------------

    From: Dan Carpenter <error27@gmail.com>

    commit 9927a403ca8c97798129953fa9cbb5dc259c7cb9 upstream.

    copy_to_user returns the number of bytes remaining to be copied, but we
    want to return a negative error code here. These are returned to
    userspace.

    Signed-off-by: Dan Carpenter <error27@gmail.com>
    Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
    Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

    ---
    drivers/gpu/drm/i915/i915_dma.c | 12 +++++++++---
    1 file changed, 9 insertions(+), 3 deletions(-)

    --- a/drivers/gpu/drm/i915/i915_dma.c
    +++ b/drivers/gpu/drm/i915/i915_dma.c
    @@ -612,8 +612,10 @@ static int i915_batchbuffer(struct drm_d
    ret = copy_from_user(cliprects, batch->cliprects,
    batch->num_cliprects *
    sizeof(struct drm_clip_rect));
    - if (ret != 0)
    + if (ret != 0) {
    + ret = -EFAULT;
    goto fail_free;
    + }
    }

    mutex_lock(&dev->struct_mutex);
    @@ -654,8 +656,10 @@ static int i915_cmdbuffer(struct drm_dev
    return -ENOMEM;

    ret = copy_from_user(batch_data, cmdbuf->buf, cmdbuf->sz);
    - if (ret != 0)
    + if (ret != 0) {
    + ret = -EFAULT;
    goto fail_batch_free;
    + }

    if (cmdbuf->num_cliprects) {
    cliprects = kcalloc(cmdbuf->num_cliprects,
    @@ -668,8 +672,10 @@ static int i915_cmdbuffer(struct drm_dev
    ret = copy_from_user(cliprects, cmdbuf->cliprects,
    cmdbuf->num_cliprects *
    sizeof(struct drm_clip_rect));
    - if (ret != 0)
    + if (ret != 0) {
    + ret = -EFAULT;
    goto fail_clip_free;
    + }
    }

    mutex_lock(&dev->struct_mutex);



    \
     
     \ /
      Last update: 2010-09-18 21:21    [W:4.560 / U:0.008 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site