From: Dan Carpenter <dan.carpenter@oracle.com>
To: Dhananjay Balan <mail@dbalan.in>
Cc: devel@driverdev.osuosl.org, linux-fbdev@vger.kernel.org,
teddy.wang@siliconmotion.com, gregkh@linuxfoundation.org,
linux-kernel@vger.kernel.org, sudipm.mukherjee@gmail.com
Subject: Re: [PATCH] staging: sm750fb: move common locking code to a macro
Date: Wed, 21 Jun 2017 09:12:46 +0000 [thread overview]
Message-ID: <20170621091246.sjhvzmuapupbzhyt@mwanda> (raw)
In-Reply-To: <1498035541.4855.3.camel@dbalan.in>
On Wed, Jun 21, 2017 at 10:59:01AM +0200, Dhananjay Balan wrote:
> Tue, 2017-06-20, 23:05 +0300-യ്ക്ക, Dan Carpenter എഴുതിയിരിക്കുന്നു:
> > On Tue, Jun 20, 2017 at 06:50:13PM +0200, Dhananjay Balan wrote:
> > > The locking and unlocking code used by copy routines is common, so
> > > moved it to a macro.
> > >
> > > Signed-off-by: Dhananjay Balan <mail@dbalan.in>
> > > ---
> > > drivers/staging/sm750fb/sm750.c | 81 ++++++++++++++++-------------
> > > ------------
> > > 1 file changed, 31 insertions(+), 50 deletions(-)
> > >
> > > diff --git a/drivers/staging/sm750fb/sm750.c
> > > b/drivers/staging/sm750fb/sm750.c
> > > index 386d4adcd91d..d8ab83aea46d 100644
> > > --- a/drivers/staging/sm750fb/sm750.c
> > > +++ b/drivers/staging/sm750fb/sm750.c
> > > @@ -156,12 +156,25 @@ static int lynxfb_ops_cursor(struct fb_info
> > > *info, struct fb_cursor *fbcursor)
> > > return 0;
> > > }
> > >
> > > +/*
> > > + * If not using spin_lock, system will die if user frequently
> > > loads and
> > > + * immediately unloads driver (dual)
> > > + */
> > > +#define dual_safe_call(func, ...)
> > > \
> > > + do {
> > > \
> > > + if (sm750_dev->fb_count > 1)
> > > \
> > > + spin_lock(&sm750_dev->slock);
> > > \
> > > + func(__VA_ARGS__);
> > > \
> > > + if (sm750_dev->fb_count > 1)
> > > \
> > > + spin_unlock(&sm750_dev->slock);
> > > \
> > > + } while (0)
> > > +
> >
> > I feel like this is the wrong approach. You could just make a small
> > lock function and a small unlock function. Except that if statement
> > seems kind of bogus. What happens if ->fb_count is 0 when we lock
> > and
> > 1 when we unlock? Why not lock unconditionally? It is not likely to
> > be
> > contested if there are no other users.
> I've to admit that I don't have much info, but is fb_count supposed to
> change during this execution?
It could change, yes.
regards,
dan carpenter
next prev parent reply other threads:[~2017-06-21 9:12 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-06-20 16:50 [PATCH] staging: sm750fb: move common locking code to a macro Dhananjay Balan
2017-06-20 20:05 ` Dan Carpenter
2017-06-21 8:59 ` Dhananjay Balan
2017-06-21 9:12 ` Dan Carpenter [this message]
2017-06-21 14:35 ` Greg KH
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20170621091246.sjhvzmuapupbzhyt@mwanda \
--to=dan.carpenter@oracle.com \
--cc=devel@driverdev.osuosl.org \
--cc=gregkh@linuxfoundation.org \
--cc=linux-fbdev@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mail@dbalan.in \
--cc=sudipm.mukherjee@gmail.com \
--cc=teddy.wang@siliconmotion.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox