[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20150520192924.GS22558@mwanda>
Date: Wed, 20 May 2015 22:29:25 +0300
From: Dan Carpenter <dan.carpenter@...cle.com>
To: "Dilger, Andreas" <andreas.dilger@...el.com>
Cc: Adrian Remonda <adrianremonda@...il.com>,
"open list:STAGING SUBSYSTEM" <devel@...verdev.osuosl.org>,
"moderated list:STAGING - LUSTRE..." <HPDD-discuss@...1.01.org>,
Greg Donald <gdonald@...il.com>,
open list <linux-kernel@...r.kernel.org>,
"Drokin, Oleg" <oleg.drokin@...el.com>,
Julia Lawall <Julia.Lawall@...6.fr>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
Joe Perches <joe@...ches.com>
Subject: Re: [PATCH 4/4] Staging: lustre: sparse lock warning fix
On Wed, May 20, 2015 at 04:51:59PM +0000, Dilger, Andreas wrote:
> On 2015/05/18, 3:21 PM, "Dan Carpenter" <dan.carpenter@...cle.com> wrote:
>
> >On Mon, May 18, 2015 at 08:34:51PM +0200, Adrian Remonda wrote:
> >> Fixed sparse warning: context imbalance in 'nrs_resource_put_safe' -
> >> 'different lock contexts for basic block' by releasing the lock on each
> >> iteration of the for loop.
> >>
> >
> >That changelog doesn't sound correct at all. That's not a correct
> >motivation or explanation.
> >
> >I reviewed the patch and it's likely going to cause dead locks. The code
> >is trying to take the spinlock for the first pointer in the array and
> >release it at the end. Now it takes the first pointer's spinlock a
> >bunch of times (dead lock) and releases it once (will not happen because
> >we are already dead).
>
> It isn't clear to me what the checkpatch complaint actually means? Is it
> that the spin_lock() and spin_unlock() calls have different amounts of
> indentation?
>
It's not a checkpatch.pl warning, it's a Sparse warning. Sparse is
crappy at reporting locking bugs. It's mostly false positives.
I think it's saying that some paths lock and unlock some don't.
Smatch is also fairly crappy at finding locking bugs, unfortunately.
I need to re-write it using modern features and cross function analysis.
regards,
dan carpenter
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists