[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20100925235459.GA5299@thunk.org>
Date: Sat, 25 Sep 2010 19:54:59 -0400
From: Ted Ts'o <tytso@....edu>
To: Tracey Dent <tdent48227@...il.com>
Cc: adilger.kernel@...ger.ca, jack@...e.cz, dmonakhov@...nvz.org,
sandeen@...hat.com, linux-ext4@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH 01/10] Fs: ext4: acl.c: fixed indent issue
On Sat, Sep 25, 2010 at 02:31:52PM -0400, Tracey Dent wrote:
> From: Tracey Dent <Tdent48227@...il.com>
>
> Found and corrected indent issue using checkpatch.pl
>
> Signed-off-by: Tracey Dent <tdent48227@...il.com>
Patches that fix whitespace issues aren't really worthwhile. They
tend to cause extra work for the me as the maintainer, since it means
that patches that others send me end up failing due to whitespace
issues, which then have to be manually fixed up.
There are also changes you've made which actually make the alignment
*worse* not better, places where you changed:
} else if
to
} else if
which is to my mind, totally broken, and certainly not required by
checkpatch.
So I'm going to NACK this whole patch series, sorry.
Patches should be checkpatch.pl clean, and so as we make changes,
we'll also gradually clean up the code. Note though that I'm an emacs
user, and so I prefer code where parenthesis is properly lined up,
i.e.:
while ((count < blks) && (count <= blocks_to_boundary) &&
(le32_to_cpu(*(branch[0].p + count)) == 0)) {
and not this:
while ((count < blks) && (count <= blocks_to_boundary) &&
(le32_to_cpu(*(branch[0].p + count)) == 0)) {
I won't insist on it, though. However, I'll generally clean up such
alignment issues if I come across it.
; - Ted
--
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