From: David Woodhouse <dwmw2@infradead.org>
To: Fabian Frederick <fabf@skynet.be>
Cc: linux-mtd@lists.infradead.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 1/1 linux-next] jffs2: remove multiple dereferences in debug
Date: Tue, 03 Mar 2015 19:44:24 +0000 [thread overview]
Message-ID: <1425411864.3359.78.camel@infradead.org> (raw)
In-Reply-To: <1425409389-21613-1-git-send-email-fabf@skynet.be>
[-- Attachment #1: Type: text/plain, Size: 2192 bytes --]
On Tue, 2015-03-03 at 20:03 +0100, Fabian Frederick wrote:
> use jffs2_eraseblock variables to simplify the code
That looks more like it's obfuscating the code to me. Now you have to
look up a few lines to see what the 'nextb' and 'gcb' variables actually
point to.
It doesn't even make it easier to read — if there were long lines with
complex formulæ it might make some sense, but in this case I think
there's really no point in this change.
> Signed-off-by: Fabian Frederick <fabf@skynet.be>
> ---
> fs/jffs2/debug.c | 26 ++++++++++++++------------
> 1 file changed, 14 insertions(+), 12 deletions(-)
>
> diff --git a/fs/jffs2/debug.c b/fs/jffs2/debug.c
> index 1090eb6..2ddb967 100644
> --- a/fs/jffs2/debug.c
> +++ b/fs/jffs2/debug.c
> @@ -160,26 +160,28 @@ __jffs2_dbg_prewrite_paranoia_check(struct jffs2_sb_info *c,
> void __jffs2_dbg_superblock_counts(struct jffs2_sb_info *c)
> {
> struct jffs2_eraseblock *jeb;
> + struct jffs2_eraseblock *gcb = c->gcblock;
> + struct jffs2_eraseblock *nextb = c->nextblock;
> uint32_t free = 0, dirty = 0, used = 0, wasted = 0,
> erasing = 0, bad = 0, unchecked = 0;
> int nr_counted = 0;
> int dump = 0;
>
> - if (c->gcblock) {
> + if (gcb) {
> nr_counted++;
> - free += c->gcblock->free_size;
> - dirty += c->gcblock->dirty_size;
> - used += c->gcblock->used_size;
> - wasted += c->gcblock->wasted_size;
> - unchecked += c->gcblock->unchecked_size;
> + free += gcb->free_size;
> + dirty += gcb->dirty_size;
> + used += gcb->used_size;
> + wasted += gcb->wasted_size;
> + unchecked += gcb->unchecked_size;
> }
> - if (c->nextblock) {
> + if (nextb) {
> nr_counted++;
> - free += c->nextblock->free_size;
> - dirty += c->nextblock->dirty_size;
> - used += c->nextblock->used_size;
> - wasted += c->nextblock->wasted_size;
> - unchecked += c->nextblock->unchecked_size;
> + free += nextb->free_size;
> + dirty += nextb->dirty_size;
> + used += nextb->used_size;
> + wasted += nextb->wasted_size;
> + unchecked += nextb->unchecked_size;
> }
> list_for_each_entry(jeb, &c->clean_list, list) {
> nr_counted++;
--
dwmw2
[-- Attachment #2: smime.p7s --]
[-- Type: application/x-pkcs7-signature, Size: 5745 bytes --]
next prev parent reply other threads:[~2015-03-03 19:44 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-03-03 19:03 [PATCH 1/1 linux-next] jffs2: remove multiple dereferences in debug Fabian Frederick
2015-03-03 19:44 ` David Woodhouse [this message]
2015-03-03 20:48 ` Nicholas Krause
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=1425411864.3359.78.camel@infradead.org \
--to=dwmw2@infradead.org \
--cc=fabf@skynet.be \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mtd@lists.infradead.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox