All of lore.kernel.org
 help / color / mirror / Atom feed
* [KJ][PATCH] kj-devel.pl
@ 2005-03-22 10:13 Vicente Feito
  2005-03-27  6:57 ` Randy.Dunlap
  0 siblings, 1 reply; 2+ messages in thread
From: Vicente Feito @ 2005-03-22 10:13 UTC (permalink / raw)
  To: kernel-janitors

[-- Attachment #1: Type: text/plain, Size: 1689 bytes --]

This patch goes against the original file here: 
http://www.kerneljanitors.org/scripts/kj-devel.pl

Randy: The comment you've made about spinlocks, you can easily let them out of 
the checking by using --nospinlocks, but, I don't understand the comment on 
using the nr line at the begining instead of using it at the end, I mean, any 
special reason? (Also, I'm not a native english speaker so I really appreciate 
the corrections, since I've learned english from HBO, not kidding :).

I've added checks for the use of memset with backward parameters, because 
ultimately a lot of these appeared.

I was about to rewrite some part of the code last night to make it more user 
friendly in order to allow other people add their regexes easily, but I don't 
know if someone is even using this, so I've avoided that by now, if I get 
some feedback on new things to check (besides the ones I already got to add) 
I'll rewrite that part, I think it would help.

I'm still wondering wether or not to check for the use of task queues, I think 
people still use them, so suggestions are more than welcome about this (and 
anything else).

Now that ldd3 is out, people can even send more suggestions in order to check 
for other things, but that's up to the janitors team members who hang in the 
channel 24/7 hardly speaking (how is this possible?they're always on profound 
meditation states, shhh ;)

kj-devel.pl net/*/*.c - it's plagued of return ESOMETHING (it's plagued of 
everything) instead of return -ESOMETHING;  (of course there are some false 
positives because of the existance of i.e. return ETH_HLEN which is correct) 
but some are wrong.

Vicente.

[-- Attachment #2: kj-devel.patch --]
[-- Type: text/x-diff, Size: 1443 bytes --]

256,257c256,257
< 					print "Unlocking a lock that hasn't been aquired ".
< 						"yet(could be a false positive) - Line:$linenr\n\n";
---
> 					print "Unlocking a lock that hasn't been acquired ".
> 						"yet (could be a false positive) - Line:$linenr\n\n";
272,273c272,273
< 					print "Unlocking a lock that hasn't been aquired ".
< 						"yet(could be a false positive) - Line:$linenr\n\n";
---
> 					print "Unlocking a lock that hasn't been acquired ".
> 						"yet (could be a false positive) - Line:$linenr\n\n";
287,288c287,288
< 					print "Unlocking a lock that hasn't been aquired ".
< 						"yet(could be a false positive) - Line:$linenr\n\n";
---
> 					print "Unlocking a lock that hasn't been acquired ".
> 						"yet (could be a false positive) - Line:$linenr\n\n";
302c302
< 						"yet(could be a false positive) - Line:$linenr\n\n";
---
> 						"yet (could be a false positive) - Line:$linenr\n\n";
347c347,351
< 				print "Using foo[] it's recommended over *foo: saves memory references & code\n";
---
> 				print "Using foo[] is recommended over *foo: saves memory references & code\n";
> 				print "$filename:$linenr:$line\n\n";
> 			}
> 			if ($line=~/memset\((.*),( *sizeof.*),( *\d+)\)/) {
> 				print "Your memset parameters appears to be backwards\n";
359c363
< 			print "If you're building a module, be concious that you must use the". 
---
> 			print "If you're building a module, note that you must use the". 

[-- Attachment #3: Type: text/plain, Size: 167 bytes --]

_______________________________________________
Kernel-janitors mailing list
Kernel-janitors@lists.osdl.org
http://lists.osdl.org/mailman/listinfo/kernel-janitors

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [KJ][PATCH] kj-devel.pl
  2005-03-22 10:13 [KJ][PATCH] kj-devel.pl Vicente Feito
@ 2005-03-27  6:57 ` Randy.Dunlap
  0 siblings, 0 replies; 2+ messages in thread
From: Randy.Dunlap @ 2005-03-27  6:57 UTC (permalink / raw)
  To: kernel-janitors

Vicente Feito wrote:
> This patch goes against the original file here: 
> http://www.kerneljanitors.org/scripts/kj-devel.pl
> 
> Randy: The comment you've made about spinlocks, you can easily let them out of 
> the checking by using --nospinlocks, but, I don't understand the comment on 
> using the nr line at the begining instead of using it at the end, I mean, any 
> special reason? (Also, I'm not a native english speaker so I really appreciate 
> the corrections, since I've learned english from HBO, not kidding :).
Wow, that's cool.  :)

Line nrs at beginning are just more common in some other tools,
like gcc and sparse.

> I've added checks for the use of memset with backward parameters, because 
> ultimately a lot of these appeared.

Yes, that's good.
Here's something else that I've seen a few patches for recently:
	if (condition);
or
	for (a; b; c);
or
	while (condition);

Of course, any of these may be valid, but several of them
probably are not.  Here's a patch from today that you can
use as an example:


Signed-off-by: Colin Leroy <colin@colino.net>
--- a/drivers/usb/net/zd1201.c	2005-03-24 12:24:23.000000000 +0100
+++ b/drivers/usb/net/zd1201.c	2005-03-24 12:24:41.000000000 +0100
@@ -673,7 +673,7 @@
  		return 0;

  	err = zd1201_docmd(zd, ZD1201_CMDCODE_ENABLE, 0, 0, 0);
-	if (!err);
+	if (!err)
  		zd->mac_enabled = 1;

  	if (zd->monitor)
@@ -690,7 +690,7 @@
  		return 0;
  	if (zd->monitor) {
  		err = zd1201_setconfig16(zd, ZD1201_RID_PROMISCUOUSMODE, 0);
-		if (err);Signed-off-by: Colin Leroy <colin@colino.net>
--- a/drivers/usb/net/zd1201.c	2005-03-24 12:24:23.000000000 +0100
+++ b/drivers/usb/net/zd1201.c	2005-03-24 12:24:41.000000000 +0100
@@ -673,7 +673,7 @@
  		return 0;

  	err = zd1201_docmd(zd, ZD1201_CMDCODE_ENABLE, 0, 0, 0);
-	if (!err);
+	if (!err)
  		zd->mac_enabled = 1;

  	if (zd->monitor)
@@ -690,7 +690,7 @@
  		return 0;
  	if (zd->monitor) {
  		err = zd1201_setconfig16(zd, ZD1201_RID_PROMISCUOUSMODE, 0);
-		if (err);
+		if (err)
  			return err;
  	}
+		if (err)
  			return err;
  	}


> I was about to rewrite some part of the code last night to make it more user 
> friendly in order to allow other people add their regexes easily, but I don't 
> know if someone is even using this, so I've avoided that by now, if I get 
> some feedback on new things to check (besides the ones I already got to add) 
> I'll rewrite that part, I think it would help.
> 
> I'm still wondering wether or not to check for the use of task queues, I think 
> people still use them, so suggestions are more than welcome about this (and 
> anything else).
> 
> Now that ldd3 is out, people can even send more suggestions in order to check 
> for other things, but that's up to the janitors team members who hang in the 
> channel 24/7 hardly speaking (how is this possible?they're always on profound 
> meditation states, shhh ;)
> 
> kj-devel.pl net/*/*.c - it's plagued of return ESOMETHING (it's plagued of 
> everything) instead of return -ESOMETHING;  (of course there are some false 
> positives because of the existance of i.e. return ETH_HLEN which is correct) 
> but some are wrong.
> 
> Vicente.


-- 
~Randy
_______________________________________________
Kernel-janitors mailing list
Kernel-janitors@lists.osdl.org
http://lists.osdl.org/mailman/listinfo/kernel-janitors

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2005-03-27  6:57 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-03-22 10:13 [KJ][PATCH] kj-devel.pl Vicente Feito
2005-03-27  6:57 ` Randy.Dunlap

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.