From: Joe Perches <joe@perches.com>
To: Oleg Drokin <green@linuxhacker.ru>
Cc: Andy Whitcroft <apw@canonical.com>,
LKML <linux-kernel@vger.kernel.org>,
Andrew Morton <akpm@linux-foundation.org>
Subject: Re: checkpatch falsepositives in Lustre code
Date: Mon, 15 Feb 2016 18:27:07 -0800 [thread overview]
Message-ID: <1455589627.4046.35.camel@perches.com> (raw)
In-Reply-To: <073E66B1-D39F-4D03-BDC7-68B18172BA5D@linuxhacker.ru>
On Mon, 2016-02-15 at 20:57 -0500, Oleg Drokin wrote:
> On Feb 15, 2016, at 7:56 PM, Joe Perches wrote:
> > [etc...]
> >
> > Yeah, that's a defect of some type.
>
> Also while I have your attention, here's another one:
>
> struct cfs_percpt_lock *
> cfs_percpt_lock_alloc(struct cfs_cpt_table *cptab)
> {
> struct cfs_percpt_lock *pcl;
> spinlock_t *lock;
> int i;
> …
> cfs_percpt_for_each(lock, i, pcl->pcl_locks)
> spin_lock_init(lock);
>
> The declaration of the spinlock pointer produces:
> CHECK: spinlock_t definition without comment
>
> Should spinlock pointers really be included in the check, it's obvious that
> they themselves are not really protecting anything, esp. considering it's a
> local function variable here.
I don't have an opinion here.
spinlock_t pointers are relatively rare.
$ git grep -E "\bspinlock_t\s*\*\s*\w+\s*[=;]" | wc -l
327
~10% of them seem to have in-line comments.
$ git grep -E "\bspinlock_t\s*\*\s*\w+\s*[=;].*/\*" | wc -l
34
and just fyi, here's a top level directory breakdown:
$ git grep -E "\bspinlock_t\s*\*\s*\w+\s*[=;]" | cut -f1 -d"/" | uniq -c
1 Documentation
27 arch
1 block
119 drivers
24 fs
23 include
5 kernel
3 lib
67 mm
51 net
4 security
2 sound
next prev parent reply other threads:[~2016-02-16 2:27 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <1E5E2198-2E5C-4B6F-AAA5-C28E0A776714@linuxhacker.ru>
2016-02-16 0:56 ` checkpatch falsepositives in Lustre code Joe Perches
2016-02-16 1:57 ` Oleg Drokin
2016-02-16 2:27 ` Joe Perches [this message]
2016-02-16 2:45 ` Oleg Drokin
2016-02-16 3:05 ` Joe Perches
2016-02-16 3:12 ` Oleg Drokin
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=1455589627.4046.35.camel@perches.com \
--to=joe@perches.com \
--cc=akpm@linux-foundation.org \
--cc=apw@canonical.com \
--cc=green@linuxhacker.ru \
--cc=linux-kernel@vger.kernel.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.