lkml.org 
[lkml]   [2006]   [Dec]   [21]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
Subjectcoding style and re-inventing the wheel way too many times

this little project of mine of submitting the occasional code
"cleanup" has turned out to be way more daunting than i originally
thought, given how many source files insist on constantly re-inventing
the wheel. consider a couple useful macros defined in
include/linux/kernel.h:

#define DIV_ROUND_UP(n,d) (((n) + (d) - 1) / (d))
#define roundup(x, y) ((((x) + ((y) - 1)) / (y)) * (y))

first, there's the obvious inconsistency in upper versus lower case,
and why no corresponding "round down" macro? in any event, a rough
first attempt to see what could be re-worded using DIV_ROUND_UP (with,
admittedly, lots of false positives):

$ grep -Er " ?+ ?([^ -]+) ?- ?1\) ?/ ?\1" *

ouch. the same could be said for

#define __ALIGN_MASK(x,mask) (((x)+(mask))&~(mask))

where you can see possible replacements (again, just a hacky first
attempt with lots of bogus "hits" but still):

$ grep -Er "\+.*(.*)\)* ?&~ ?\(*\1" *

and the list just goes on.

one thing that might be useful would be to pull out the set of
generically useful macros into a separate header file, say
include/linux/cool_macros.h or something like that, and just put a
pointer to that header file from the CodingStyle file and strongly
encourage kernel programmers to read it and use it.

the obvious set of macros for that file would be things related to:

- rounding up and down
- alignment and masking
- array size
- sizeof field
- container_of
- variants of min and max

and that sort of thing, and that header file could just be included
from kernel.h.

in any event, even *i* am not going to go near this kind of cleanup,
but is there anything actually worth doing about it? just curious.

rday
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2006-12-21 12:57    [W:0.049 / U:0.068 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site