mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Joe Perches <joe@perches.com>
To: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Pavel Machek <pavel@ucw.cz>, Greg KH <gregkh@linuxfoundation.org>,
	Andy Lutomirski <luto@amacapital.net>,
	Linus Torvalds <torvalds@linux-foundation.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	David Herrmann <dh.herrmann@gmail.com>,
	Djalal Harouni <tixxdz@opendz.org>,
	Havoc Pennington <havoc.pennington@gmail.com>,
	"Eric W. Biederman" <ebiederm@xmission.com>,
	One Thousand Gnomes <gnomes@lxorguk.ukuu.org.uk>,
	Tom Gundersen <teg@jklm.no>, Daniel Mack <daniel@zonque.org>
Subject: Re: kdbus: to merge or not to merge?
Date: Thu, 09 Jul 2015 03:29:43 -0700	[thread overview]
Message-ID: <1436437783.2682.104.camel@perches.com> (raw)
In-Reply-To: <CAMuHMdVMEYeW1e28BTGYPT7mKOSaZTScE_-tXt6_rAEvKDsGPQ@mail.gmail.com>

On Thu, 2015-07-09 at 10:39 +0200, Geert Uytterhoeven wrote:
> On Wed, Jul 8, 2015 at 3:54 PM, Pavel Machek <pavel@ucw.cz> wrote:
> > Apparently, new tools are needed in the community, as normal review
> > comments did not stop drivers/android/binder.c merge.
> >
> > For example binder_transaction does not exactly look like a kernel
> > code, "TODO: fput" does not really invoke confidence, and amount of
> > BUG_ON()s is quite amazing...
> 
> Amazingly, checkpatch (without --strict) only complains about long lines.
> 
> Seems like the test for "BUG" is (and always has been) commented out...

Maybe (requires --strict when scanning files)
---
 scripts/checkpatch.pl | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index 90e1edc..11c8186 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -3439,13 +3439,15 @@ sub process {
 			}
 		}
 
-# # no BUG() or BUG_ON()
-# 		if ($line =~ /\b(BUG|BUG_ON)\b/) {
-# 			print "Try to use WARN_ON & Recovery code rather than BUG() or BUG_ON()\n";
-# 			print "$herecurr";
-# 			$clean = 0;
-# 		}
+# avoid BUG() or BUG_ON()
+		if ($line =~ /\b(?:BUG|BUG_ON)\b/) {
+			my $msg_type = \&WARN;
+			$msg_type = \&CHK if ($file);
+			&{$msg_type}("AVOID_BUG",
+				     "Avoid crashing the kernel - Try using WARN_ON & Recovery code rather than BUG() or BUG_ON()\n" . $herecurr);
+		}
 
+# avoid LINUX_VERSION_CODE
 		if ($line =~ /\bLINUX_VERSION_CODE\b/) {
 			WARN("LINUX_VERSION_CODE",
 			     "LINUX_VERSION_CODE should be avoided, code should be for the version to which it is merged\n" . $herecurr);



  reply	other threads:[~2015-07-09 10:29 UTC|newest]

Thread overview: 69+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-06-23  6:06 Andy Lutomirski
2015-06-23  6:31 ` Andy Lutomirski
2015-06-23  6:41 ` Greg KH
2015-06-23  7:22   ` Richard Weinberger
2015-06-23  9:25     ` Martin Steigerwald
2015-06-23  9:38       ` Martin Steigerwald
2015-06-23 15:07     ` Andy Lutomirski
2015-06-25  2:14       ` Steven Rostedt
2015-06-25  2:20         ` Linus Torvalds
2015-06-25  6:01           ` Martin Steigerwald
2015-06-25  6:05             ` Martin Steigerwald
2015-06-25 13:34               ` Theodore Ts'o
2015-06-25 14:03                 ` Martin Steigerwald
2015-06-23  9:12   ` Borislav Petkov
2015-07-08 13:54   ` Pavel Machek
2015-07-09  8:39     ` Geert Uytterhoeven
2015-07-09 10:29       ` Joe Perches [this message]
2015-07-09 10:57         ` Geert Uytterhoeven
2015-07-09 11:36       ` Pavel Machek
2015-06-23 23:19 ` Linus Torvalds
2015-06-24  0:52   ` Andy Lutomirski
2015-06-24  8:05   ` Ingo Molnar
2015-06-24 10:41     ` Eric W. Biederman
2015-06-24 10:46     ` Martin Steigerwald
2015-06-24 13:18       ` Ingo Molnar
2015-06-24 17:39         ` David Lang
2015-06-24 18:41           ` Eric W. Biederman
2015-06-24 18:50           ` Martin Steigerwald
2015-06-24 19:12             ` David Lang
2015-06-25  7:57               ` Geert Uytterhoeven
2015-06-25 15:26                 ` Steven Rostedt
2015-06-25  6:31           ` Greg KH
2015-06-25  6:48             ` David Lang
2015-06-25  7:47           ` Ingo Molnar
2015-06-25  7:51             ` Ingo Molnar
2015-06-24 11:43     ` Martin Steigerwald
2015-06-24 13:27       ` Ingo Molnar
2015-06-24  9:55 ` Alexander Larsson
2015-06-24 14:38   ` Andy Lutomirski
     [not found]     ` <CAHr-LrYWNwv6_YLoP-B3duQ1QsjPiTiaEnjBQ7j2brPMeTgA3A@mail.gmail.com>
     [not found]       ` <CALCETrW3F6YP_H1oRJa47f1DT7B35OubhJYSnq0U-_GmFQHNOA@mail.gmail.com>
2015-06-24 17:11         ` Alexander Larsson
2015-06-24 19:43           ` Andy Lutomirski
2015-06-24 20:45             ` Alexander Larsson
2015-08-03 23:02 ` Andy Lutomirski
2015-08-04  8:58   ` David Herrmann
2015-08-04 13:46     ` Linus Torvalds
2015-08-04 14:09       ` David Herrmann
2015-08-04 14:47         ` Andy Lutomirski
2015-08-05  0:18           ` Andy Lutomirski
2015-08-06  7:06             ` Daniel Mack
2015-08-06 15:27               ` Andy Lutomirski
2015-08-06 17:24                 ` Daniel Mack
2015-08-05  7:10           ` David Herrmann
2015-08-05 20:11             ` Andy Lutomirski
2015-08-06  8:04               ` David Herrmann
2015-08-06  8:25                 ` Martin Steigerwald
2015-08-06 15:21                 ` Andy Lutomirski
2015-08-06 18:14                   ` Daniel Mack
2015-08-06 18:43                     ` Andy Lutomirski
2015-08-07 14:40                       ` Daniel Mack
2015-08-07 15:09                         ` Andy Lutomirski
     [not found]                         ` <CA+55aFxDLt-5+=xXeYG4nJKMb8L_iD9FmwTZ2VuughBku-mW3g@mail.gmail.com>
2015-08-09 19:00                           ` Greg Kroah-Hartman
2015-08-09 22:11                             ` Daniel Mack
2015-08-10  2:10                               ` Andy Lutomirski
2015-08-10 17:04                               ` Linus Torvalds
2015-08-10  2:48                             ` David Lang
2015-08-07 15:37                       ` cee1
2015-07-01  0:03 Kalle A. Sandstrom
2015-07-01 16:51 ` David Herrmann
2015-07-06 21:18   ` Kalle A. Sandstrom

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=1436437783.2682.104.camel@perches.com \
    --to=joe@perches.com \
    --cc=daniel@zonque.org \
    --cc=dh.herrmann@gmail.com \
    --cc=ebiederm@xmission.com \
    --cc=geert@linux-m68k.org \
    --cc=gnomes@lxorguk.ukuu.org.uk \
    --cc=gregkh@linuxfoundation.org \
    --cc=havoc.pennington@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=luto@amacapital.net \
    --cc=pavel@ucw.cz \
    --cc=teg@jklm.no \
    --cc=tixxdz@opendz.org \
    --cc=torvalds@linux-foundation.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

Powered by JetHome