Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1674466

Re: [PATCH] staging: sm750fb: always take the lock

From Frans Klaver <fransklaver@gmail.com>
Newsgroups linux.kernel
Subject Re: [PATCH] staging: sm750fb: always take the lock
Date 2017-06-26 08:40 +0200
Message-ID <tWvQJ-7gm-9@gated-at.bofh.it> (permalink)
References <tWv4l-6Jc-5@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


There's no version number. Which one is the correct one?

On Mon, Jun 26, 2017 at 7:45 AM, AbdAllah-MEZITI
<abdallah.meziti.pro@gmail.com> wrote:
> This patch
> - will always take the lock
> - fix the sparse warning:
> drivers/staging/sm750fb/sm750.c:159:13: warning: context imbalance in 'lynxfb_ops_fillrect' - different lock contexts for basic block
> drivers/staging/sm750fb/sm750.c:231:9: warning: context imbalance in 'lynxfb_ops_copyarea' - different lock contexts for basic block
> drivers/staging/sm750fb/sm750.c:235:13: warning: context imbalance in 'lynxfb_ops_imageblit' - different lock contexts for basic block
>
> Signed-off-by: AbdAllah MEZITI <abdallah.meziti.pro@gmail.com>
> ---
>  drivers/staging/sm750fb/sm750.c | 18 ++++++------------
>  1 file changed, 6 insertions(+), 12 deletions(-)
>
> diff --git a/drivers/staging/sm750fb/sm750.c b/drivers/staging/sm750fb/sm750.c
> index 386d4ad..4a22190 100644
> --- a/drivers/staging/sm750fb/sm750.c
> +++ b/drivers/staging/sm750fb/sm750.c
> @@ -186,16 +186,14 @@ static void lynxfb_ops_fillrect(struct fb_info *info,
>          * If not use spin_lock,system will die if user load driver
>          * and immediately unload driver frequently (dual)
>          */
> -       if (sm750_dev->fb_count > 1)
> -               spin_lock(&sm750_dev->slock);
> +       spin_lock(&sm750_dev->slock);
>
>         sm750_dev->accel.de_fillrect(&sm750_dev->accel,
>                                      base, pitch, Bpp,
>                                      region->dx, region->dy,
>                                      region->width, region->height,
>                                      color, rop);
> -       if (sm750_dev->fb_count > 1)
> -               spin_unlock(&sm750_dev->slock);
> +       spin_unlock(&sm750_dev->slock);
>  }
>
>  static void lynxfb_ops_copyarea(struct fb_info *info,
> @@ -220,16 +218,14 @@ static void lynxfb_ops_copyarea(struct fb_info *info,
>          * If not use spin_lock, system will die if user load driver
>          * and immediately unload driver frequently (dual)
>          */
> -       if (sm750_dev->fb_count > 1)
> -               spin_lock(&sm750_dev->slock);
> +       spin_lock(&sm750_dev->slock);
>
>         sm750_dev->accel.de_copyarea(&sm750_dev->accel,
>                                      base, pitch, region->sx, region->sy,
>                                      base, pitch, Bpp, region->dx, region->dy,
>                                      region->width, region->height,
>                                      HW_ROP2_COPY);
> -       if (sm750_dev->fb_count > 1)
> -               spin_unlock(&sm750_dev->slock);
> +       spin_unlock(&sm750_dev->slock);
>  }
>
>  static void lynxfb_ops_imageblit(struct fb_info *info,
> @@ -269,8 +265,7 @@ static void lynxfb_ops_imageblit(struct fb_info *info,
>          * If not use spin_lock, system will die if user load driver
>          * and immediately unload driver frequently (dual)
>          */
> -       if (sm750_dev->fb_count > 1)
> -               spin_lock(&sm750_dev->slock);
> +       spin_lock(&sm750_dev->slock);
>
>         sm750_dev->accel.de_imageblit(&sm750_dev->accel,
>                                       image->data, image->width >> 3, 0,
> @@ -278,8 +273,7 @@ static void lynxfb_ops_imageblit(struct fb_info *info,
>                                       image->dx, image->dy,
>                                       image->width, image->height,
>                                       fgcol, bgcol, HW_ROP2_COPY);
> -       if (sm750_dev->fb_count > 1)
> -               spin_unlock(&sm750_dev->slock);
> +       spin_unlock(&sm750_dev->slock);
>  }
>
>  static int lynxfb_ops_pan_display(struct fb_var_screeninfo *var,
> --
> 2.7.4
>

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH] staging: sm750fb: always take the lock AbdAllah-MEZITI <abdallah.meziti.pro@gmail.com> - 2017-06-26 07:50 +0200
  Re: [PATCH] staging: sm750fb: always take the lock Frans Klaver <fransklaver@gmail.com> - 2017-06-26 08:40 +0200
  Re: [PATCH] staging: sm750fb: always take the lock Geert Uytterhoeven <geert@linux-m68k.org> - 2017-06-26 11:20 +0200
    Re: [PATCH] staging: sm750fb: always take the lock Frans Klaver <fransklaver@gmail.com> - 2017-06-26 11:20 +0200
      Re: [PATCH] staging: sm750fb: always take the lock Geert Uytterhoeven <geert@linux-m68k.org> - 2017-06-26 11:30 +0200

csiph-web