From: Josh Triplett <josh@joshtriplett.org>
To: Joe Perches <joe@perches.com>
Cc: Andrew Morton <akpm@linux-foundation.org>,
Manfred Spraul <manfred@colorfullife.com>,
Andy Whitcroft <apw@canonical.com>,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/5] checkpatch: Add a --fix-inplace option
Date: Thu, 26 Dec 2013 12:08:40 -0800 [thread overview]
Message-ID: <20131226200840.GB7267@leaf> (raw)
In-Reply-To: <f15570aa85918df5942aac86ad80df19e1d743c5.1388085015.git.joe@perches.com>
On Thu, Dec 26, 2013 at 11:20:29AM -0800, Joe Perches wrote:
> Add the ability to fix and overwrite existing files/patches instead
> of creating a new file "<filename>.EXPERIMENTAL-checkpatch-fixes".
>
> Suggested-by: Manfred Spraul <manfred@colorfullife.com>
> Signed-off-by: Joe Perches <joe@perches.com>
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
> scripts/checkpatch.pl | 10 +++++++++-
> 1 file changed, 9 insertions(+), 1 deletion(-)
>
> diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
> index f5d4560..19376b4 100755
> --- a/scripts/checkpatch.pl
> +++ b/scripts/checkpatch.pl
> @@ -29,6 +29,7 @@ my $mailback = 0;
> my $summary_file = 0;
> my $show_types = 0;
> my $fix = 0;
> +my $fix_inplace = 0;
> my $root;
> my %debug;
> my %camelcase = ();
> @@ -76,6 +77,9 @@ Options:
> "<inputfile>.EXPERIMENTAL-checkpatch-fixes"
> with potential errors corrected to the preferred
> checkpatch style
> + --fix-inplace EXPERIMENTAL - may create horrible results
> + Is the same as --fix, but overwrites the input
> + file. It's your fault if there's no backup or git
> --ignore-perl-version override checking of perl version. expect
> runtime errors.
> -h, --help, --version display this help and exit
> @@ -131,6 +135,7 @@ GetOptions(
> 'mailback!' => \$mailback,
> 'summary-file!' => \$summary_file,
> 'fix!' => \$fix,
> + 'fix-inplace!' => \$fix_inplace,
> 'ignore-perl-version!' => \$ignore_perl_version,
> 'debug=s' => \%debug,
> 'test-only=s' => \$tst_only,
> @@ -140,6 +145,8 @@ GetOptions(
>
> help(0) if ($help);
>
> +$fix = 1 if ($fix_inplace);
> +
> my $exit = 0;
>
> if ($^V && $^V lt $minimum_perl_version) {
> @@ -4456,7 +4463,8 @@ sub process {
> hash_show_words(\%ignore_type, "Ignored");
>
> if ($clean == 0 && $fix && "@rawlines" ne "@fixed") {
> - my $newfile = $filename . ".EXPERIMENTAL-checkpatch-fixes";
> + my $newfile = $filename;
> + $newfile .= ".EXPERIMENTAL-checkpatch-fixes" if (!$fix_inplace);
> my $linecount = 0;
> my $f;
>
> --
> 1.8.1.2.459.gbcd45b4.dirty
>
next prev parent reply other threads:[~2013-12-26 20:08 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-12-26 19:20 [PATCH 0/5] checkpatch: A few corrections and updates Joe Perches
2013-12-26 19:20 ` [PATCH 1/5] checkpatch: Add tests for function pointer style misuses Joe Perches
2013-12-26 20:07 ` Josh Triplett
2013-12-27 0:58 ` Josh Triplett
2013-12-27 1:25 ` Joe Perches
2013-12-26 19:20 ` [PATCH 2/5] checkpatch: Add a --fix-inplace option Joe Perches
2013-12-26 20:08 ` Josh Triplett [this message]
2013-12-26 19:20 ` [PATCH 3/5] checkpatch: Improve space before tab --fix option Joe Perches
2013-12-26 19:20 ` [PATCH 4/5] checkpatch: check for if's with unnecessary parentheses Joe Perches
2013-12-26 20:09 ` Josh Triplett
2013-12-26 19:20 ` [PATCH 5/5] checkpatch: Update the FSF/GPL address check Joe Perches
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=20131226200840.GB7267@leaf \
--to=josh@joshtriplett.org \
--cc=akpm@linux-foundation.org \
--cc=apw@canonical.com \
--cc=joe@perches.com \
--cc=linux-kernel@vger.kernel.org \
--cc=manfred@colorfullife.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